/home/techb158/ileadtechnology.com/SSM/app/Policies/exam
NameSizeModeActions
ExamPolicy.php19080644editdlrm
OnlineExamPolicy.php31470644editdlrm
RecordPolicy.php17820644editdlrm
SchedulePolicy.php20730644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Policies/exam/SchedulePolicy.php (2073B)
can('create-exam-schedule') || $user->can('edit-exam-schedule'); } /** * Determine whether the user can list all the exam schedule. * * @param \App\User $user * @param \App\Models\Exam\Schedule $exam_schedule * @return mixed */ public function list(User $user) { return $user->can('list-exam-schedule'); } /** * Determine whether the user can create exam. * * @param \App\User $user * @return mixed */ public function create(User $user) { return $user->can('create-exam-schedule'); } /** * Determine whether the user can view the exam schedule. * * @param \App\User $user * @param \App\Models\Exam\Schedule $exam_schedule * @return mixed */ public function show(User $user) { return $user->can('list-exam-schedule'); } /** * Determine whether the user can update the exam schedule. * * @param \App\User $user * @param \App\Models\Exam\Schedule $exam_schedule * @return mixed */ public function update(User $user) { return $user->can('edit-exam-schedule'); } /** * Determine whether the user can delete the exam schedule. * * @param \App\User $user * @param \App\Models\Exam\Schedule $exam_schedule * @return mixed */ public function delete(User $user) { return $user->can('delete-exam-schedule'); } }