/home/techb158/ileadtechnology.com/SSM/app/Policies/calendar
NameSizeModeActions
EventPolicy.php22350644editdlrm
HolidayPolicy.php16540644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Policies/calendar/HolidayPolicy.php (1654B)
can('list-holiday'); } /** * Determine whether the user can create holiday. * * @param \App\User $user * @return mixed */ public function create(User $user) { return $user->can('create-holiday'); } /** * Determine whether the user can view the holiday. * * @param \App\User $user * @param \App\Models\Calendar\Holiday $holiday * @return mixed */ public function show(User $user) { return $user->can('list-holiday'); } /** * Determine whether the user can update the holiday. * * @param \App\User $user * @param \App\Models\Calendar\Holiday $holiday * @return mixed */ public function update(User $user) { return $user->can('edit-holiday'); } /** * Determine whether the user can delete the holiday. * * @param \App\User $user * @param \App\Models\Calendar\Holiday $holiday * @return mixed */ public function delete(User $user) { return $user->can('delete-holiday'); } }