mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-27 06:25:28 +03:00
14 lines
197 B
Plaintext
14 lines
197 B
Plaintext
<?php namespace {{namespace}};
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class {{name}} extends Model {
|
|
|
|
protected $fillable = [{{fillable}}];
|
|
|
|
protected $dates = [{{dates}}];
|
|
|
|
{{relations}}
|
|
|
|
}
|