get(); } public function findById(int $id): ?SupportTicket { return SupportTicket::find($id); } public function create(array $data): SupportTicket { return SupportTicket::create($data); } public function update(int $id, array $data): ?SupportTicket { $model = $this->findById($id); if (!$model) { return null; } $model->update($data); return $model->fresh(); } public function delete(int $id): bool { $model = $this->findById($id); if (!$model) { return false; } return $model->delete(); } // Add custom business logic methods here }