123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
-
- namespace App\Policies;
-
- use App\User;
- use Illuminate\Auth\Access\HandlesAuthorization;
-
- class UserPolicy
- {
- use HandlesAuthorization;
-
- /**
- * Determine whether the user can view any models.
- *
- * @param \App\User $user
- * @return mixed
- */
- public function viewAny(User $user)
- {
- //
- }
-
- /**
- * Determine whether the user can view the model.
- *
- * @param \App\User $user
- * @param \App\User $model
- * @return mixed
- */
- public function view(User $user, User $model)
- {
- //
- }
-
- /**
- * Determine whether the user can create models.
- *
- * @param \App\User $user
- * @return mixed
- */
- public function create(User $user)
- {
- //
- }
-
- /**
- * Determine whether the user can update the model.
- *
- * @param \App\User $user
- * @param \App\User $model
- * @return mixed
- */
- public function update(User $user, User $model)
- {
- //
- }
-
- /**
- * Determine whether the user can delete the model.
- *
- * @param \App\User $user
- * @param \App\User $model
- * @return mixed
- */
- public function delete(User $user, User $model)
- {
- //
- }
-
- /**
- * Determine whether the user can restore the model.
- *
- * @param \App\User $user
- * @param \App\User $model
- * @return mixed
- */
- public function restore(User $user, User $model)
- {
- //
- }
-
- /**
- * Determine whether the user can permanently delete the model.
- *
- * @param \App\User $user
- * @param \App\User $model
- * @return mixed
- */
- public function forceDelete(User $user, User $model)
- {
- //
- }
- }
|