user_id === $user->id; } /** * Determine whether the user can create models. */ public function create(User $user): bool { return true; } /** * Determine whether the user can update the model. */ public function update(User $user, Recording $recording): bool { return $recording->user_id === $user->id; } /** * Determine whether the user can delete the model. */ public function delete(User $user, Recording $recording): bool { return $recording->user_id === $user->id; } /** * Determine whether the user can start or stop transcription. */ public function transcribe(User $user, Recording $recording): bool { return $recording->user_id === $user->id; } }