Files
sibedas/resources/laravel-code-generator/templates/default/model.stub
Firman Herdiansyah 99e99fa2e6 Update Dashboard Layout
2025-02-05 13:36:33 +07:00

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 %]
}