/
home
/
techb158
/
ileadtechnology.com
/
SSM
/
app
/
Policies
/
calendar
/
/home/techb158/ileadtechnology.com/SSM/app/Policies/calendar
mkdir
upload
Name
Size
Mode
Actions
EventPolicy.php
2235
0644
edit
dl
rm
HolidayPolicy.php
1654
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/SSM/app/Policies/calendar/EventPolicy.php
(2235B)
<?php namespace App\Policies\Calendar; use App\User; use Illuminate\Auth\Access\HandlesAuthorization; class EventPolicy { use HandlesAuthorization; /** * Create a new policy instance. * * @return void */ public function __construct() { // } /** * Determine whether the user can fetch event pre requisite * * @param \App\User $user * @param \App\Models\Calendar\Event $event * @return mixed */ public function preRequisite(User $user) { return $user->can('create-event') || $user->can('edit-event'); } /** * Determine whether the user can list all the event. * * @param \App\User $user * @param \App\Models\Calendar\Event $event * @return mixed */ public function list(User $user) { return $user->can('list-event'); } /** * Determine whether the user can create event. * * @param \App\User $user * @return mixed */ public function create(User $user) { return $user->can('create-event'); } /** * Determine whether the user can view the event. * * @param \App\User $user * @param \App\Models\Calendar\Event $event * @return mixed */ public function show(User $user) { if (! $user->can('list-event')) return false; if ($user->hasAnyRole([ config('system.default_role.student'), config('system.default_role.parent') ]) && ! in_array($event->audience, ['everyone','selected_course','selected_batch'])); return false; return true; } /** * Determine whether the user can update the event. * * @param \App\User $user * @param \App\Models\Calendar\Event $event * @return mixed */ public function update(User $user) { return $user->can('edit-event'); } /** * Determine whether the user can delete the event. * * @param \App\User $user * @param \App\Models\Calendar\Event $event * @return mixed */ public function delete(User $user) { return $user->can('delete-event'); } }
Save
cmd:
run