academico-sis /
academico
| 1 | <?php |
||
| 2 | |||
| 3 | namespace App\Models; |
||
| 4 | |||
| 5 | use Backpack\CRUD\app\Models\Traits\CrudTrait; |
||
| 6 | use Illuminate\Database\Eloquent\Model; |
||
| 7 | use Illuminate\Database\Eloquent\SoftDeletes; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @mixin IdeHelperRhythm |
||
| 11 | */ |
||
| 12 | class Rhythm extends Model |
||
| 13 | { |
||
| 14 | use CrudTrait; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 15 | use SoftDeletes; |
||
| 16 | |||
| 17 | public $timestamps = false; |
||
| 18 | |||
| 19 | protected $guarded = ['id']; |
||
| 20 | |||
| 21 | /* |
||
| 22 | |-------------------------------------------------------------------------- |
||
| 23 | | FUNCTIONS |
||
| 24 | |-------------------------------------------------------------------------- |
||
| 25 | */ |
||
| 26 | |||
| 27 | /* |
||
| 28 | |-------------------------------------------------------------------------- |
||
| 29 | | RELATIONS |
||
| 30 | |-------------------------------------------------------------------------- |
||
| 31 | */ |
||
| 32 | |||
| 33 | /* |
||
| 34 | |-------------------------------------------------------------------------- |
||
| 35 | | SCOPES |
||
| 36 | |-------------------------------------------------------------------------- |
||
| 37 | */ |
||
| 38 | |||
| 39 | /* |
||
| 40 | |-------------------------------------------------------------------------- |
||
| 41 | | ACCESORS |
||
| 42 | |-------------------------------------------------------------------------- |
||
| 43 | */ |
||
| 44 | |||
| 45 | /* |
||
| 46 | |-------------------------------------------------------------------------- |
||
| 47 | | MUTATORS |
||
| 48 | |-------------------------------------------------------------------------- |
||
| 49 | */ |
||
| 50 | } |
||
| 51 |