hasPermissionTo('admission-track.viewAny'); } /** * Determine whether the user can view the model. */ public function view(User $user, AdmissionTrack $model): bool { return $user->hasPermissionTo('admission-track.view'); } /** * Determine whether the user can create models. */ public function create(User $user): bool { return $user->hasPermissionTo('admission-track.create'); } /** * Determine whether the user can update the model. */ public function update(User $user, AdmissionTrack $model): bool { return $user->hasPermissionTo('admission-track.update'); } /** * Determine whether the user can delete the model. */ public function delete(User $user, AdmissionTrack $model): bool { return $user->hasPermissionTo('admission-track.delete'); } }