1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
-
- namespace App\Policies;
-
- use App\User;
- use App\Professor;
- use Illuminate\Auth\Access\HandlesAuthorization;
-
- class ProfessorPolicy
- {
- use HandlesAuthorization;
-
-
-
- public function viewAny(User $user)
- {
- return true;
- }
-
-
-
- public function update(User $user, Professor $professor)
- {
- return $user->departments->where('id', '=', $professor->dept_id)->isNotEmpty()
- || $user->faculties->where('id', '=', $professor->faculty->id)->isNotEmpty();
- }
-
-
-
- public function delete(User $user, Professor $professor)
- {
- return $user->departments->where('id', '=', $professor->dept_id)->isNotEmpty()
- || $user->faculties->where('id', '=', $professor->faculty->id)->isNotEmpty();
- }
-
- }
|