Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
admin
/
app
/
Models
/
TUIT
/
Filename :
TuitAllocationConfig.php
back
Copy
<?php namespace App\Models\TUIT; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class TuitAllocationConfig extends Model { use SoftDeletes; /** * The table associated with the model. * * @var string */ protected $table = 'tuit_allocation_config'; /** * The primary key associated with the table. * * @var string */ protected $primaryKey = 'id'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'parent_id', 'action', 'description', 'tuit_points', ]; /** * The attributes that should be mutated to dates. * * @var array */ protected $dates = ['created_at', 'updated_at', 'deleted_at']; }