12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace App\Policies;
- use App\Models\Profile;
- use App\Models\User;
- use Illuminate\Auth\Access\HandlesAuthorization;
- class ProfilePolicy
- {
- use HandlesAuthorization;
- /**
- * Determine whether the user can view any models.
- *
- * @param \App\Models\User $user
- * @return mixed
- */
- public function viewAny(User $user)
- {
- //
- }
- /**
- * Determine whether the user can view the model.
- *
- * @param \App\Models\User $user
- * @param \App\Models\Profile $profile
- * @return mixed
- */
- public function view(User $user, Profile $profile)
- {
- //
- }
- /**
- * 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\Profile $profile
- * @return mixed
- */
- public function update(User $user, Profile $profile)
- {
- return $user->id == $profile->user_id;
- }
- /**
- * Determine whether the user can delete the model.
- *
- * @param \App\Models\User $user
- * @param \App\Models\Profile $profile
- * @return mixed
- */
- public function delete(User $user, Profile $profile)
- {
- //
- }
- /**
- * Determine whether the user can restore the model.
- *
- * @param \App\Models\User $user
- * @param \App\Models\Profile $profile
- * @return mixed
- */
- public function restore(User $user, Profile $profile)
- {
- //
- }
- /**
- * Determine whether the user can permanently delete the model.
- *
- * @param \App\Models\User $user
- * @param \App\Models\Profile $profile
- * @return mixed
- */
- public function forceDelete(User $user, Profile $profile)
- {
- //
- }
- }
|