$this->id, 'photo' => [ 'file_name' => $this->photo_file_name, 'file_url' => $this->photo_file_url, 'mime_type' => $this->photo_mime_type, 'size' => $this->photo_size, ], 'brand' => $this->brand, 'model' => $this->model, 'registration_number' => $this->registration_number, 'vehicle_type' => $this->vehicle_type, 'fuel_type' => $this->fuel_type, 'year' => $this->year, 'status' => $this->status, 'notes' => $this->notes, 'primary_user_id' => $this->primary_user_id, 'primary_user' => $this->whenLoaded('primaryUser', function () { return $this->primaryUser ? [ 'id' => $this->primaryUser->id, 'first_name' => $this->primaryUser->first_name, 'last_name' => $this->primaryUser->last_name, 'full_name' => $this->primaryUser->full_name, 'email' => $this->primaryUser->email, ] : null; }), 'created_at' => $this->created_at?->format('Y-m-d H:i:s'), 'updated_at' => $this->updated_at?->format('Y-m-d H:i:s'), ]; } }