hasPermissionTo('student-invoice-report.viewAny'); } /** * Determine whether the user can view the model. */ public function view(User $user, StudentInvoiceReport $model): bool { return $user->hasPermissionTo('student-invoice-report.view'); } /** * Determine whether the user can create models. */ public function create(User $user): bool { return false; } /** * Determine whether the user can update the model. */ public function update(User $user, StudentInvoiceReport $model): bool { return false; } /** * Determine whether the user can delete the model. */ public function delete(User $user, StudentInvoiceReport $model): bool { return false; } }