'object', 'deleted_at' => 'timestamp', 'updated_at' => 'timestamp', 'created_at' => 'timestamp', ]; protected $fillable = [ 'name', 'design', 'is_active', ]; public function company() { return $this->belongsTo(Company::class); } }