Update Dashboard Layout
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
<?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 %]
|
||||
}
|
||||
Reference in New Issue
Block a user