'integer', 'images' => 'array', 'status' => 'integer', 'handle_at' => 'datetime', ]; } public function customer(): BelongsTo { return $this->belongsTo(Customer::class); } public function handler(): BelongsTo { return $this->belongsTo(User::class, 'handler_id'); } }