SystemMaterial.php
326 Bytes
<?php
namespace App\Models;
use App\Support\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class SystemMaterial extends Model
{
use SoftDeletes;
protected $table = 'system_materials';
protected $guarded = [];
protected $casts = [
'type' => 'integer',
'expand' => 'array'
];
}