hasRole('administrators')) { return true; } } /** * Determine whether the user can view any models. * * @param \App\Models\User $user * @return mixed */ public function viewAny(User $user) { if ($user->hasRole('moderator')) { return true; } } /** * Determine whether the user can view the model. * * @param \App\Models\User $user * @param \App\Models\Reason $reason * @return mixed */ public function view(User $user, Reason $reason) { if ($user->hasRole('moderator')) { return true; } } /** * Determine whether the user can create models. * * @param \App\Models\User $user * @return mixed */ public function create(User $user) { // } /** * Determine whether the user can update the model. * * @param \App\Models\User $user * @param \App\Models\Reason $reason * @return mixed */ public function update(User $user, Reason $reason) { // } /** * Determine whether the user can delete the model. * * @param \App\Models\User $user * @param \App\Models\Reason $reason * @return mixed */ public function delete(User $user, Reason $reason) { // } /** * Determine whether the user can restore the model. * * @param \App\Models\User $user * @param \App\Models\Reason $reason * @return mixed */ public function restore(User $user, Reason $reason) { // } /** * Determine whether the user can permanently delete the model. * * @param \App\Models\User $user * @param \App\Models\Reason $reason * @return mixed */ public function forceDelete(User $user, Reason $reason) { // } }