mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-30 13:55:28 -05:00
21 lines
376 B
Plaintext
Executable File
21 lines
376 B
Plaintext
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$;
|
|
}
|