45 lines
777 B
Plaintext
45 lines
777 B
Plaintext
<?php
|
|
|
|
namespace [% namespace %];
|
|
|
|
[% use_command_placeholder %]
|
|
|
|
class [% model_name_class %] [% model_extends %]
|
|
{
|
|
[% use_soft_delete_trait %]
|
|
[% time_stamps %]
|
|
/**
|
|
* The database table used by the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = '[% table %]';
|
|
|
|
[% primary_key %]
|
|
|
|
/**
|
|
* Attributes that should be mass-assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [% fillable %];
|
|
|
|
/**
|
|
* The attributes that should be mutated to dates.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dates = [% dates %];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [% casts %];
|
|
|
|
[% relationships %]
|
|
[% mutators %]
|
|
[% accessors %]
|
|
}
|