20 lines
376 B
Text
Executable file
20 lines
376 B
Text
Executable file
<?php
|
|
|
|
namespace $NAMESPACE$;
|
|
|
|
use App\Models\EntityModel;
|
|
use Laracasts\Presenter\PresentableTrait;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class $CLASS$ extends EntityModel
|
|
{
|
|
use PresentableTrait;
|
|
use SoftDeletes;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $presenter = 'App\Ninja\Presenters\$CLASS$Presenter';
|
|
|
|
protected $fillable = $FILLABLE$;
|
|
}
|