芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/invoicer.pulsehost.co.uk/app/Policies/PaymentPolicy.php
hasCompany($payment->company_id)) { return true; } return false; } /** * Determine whether the user can create models. * * @return mixed */ public function create(User $user): bool { if (BouncerFacade::can('create-payment', Payment::class)) { return true; } return false; } /** * Determine whether the user can update the model. * * @return mixed */ public function update(User $user, Payment $payment): bool { if (BouncerFacade::can('edit-payment', $payment) && $user->hasCompany($payment->company_id)) { return true; } return false; } /** * Determine whether the user can delete the model. * * @return mixed */ public function delete(User $user, Payment $payment): bool { if (BouncerFacade::can('delete-payment', $payment) && $user->hasCompany($payment->company_id)) { return true; } return false; } /** * Determine whether the user can restore the model. * * @return mixed */ public function restore(User $user, Payment $payment): bool { if (BouncerFacade::can('delete-payment', $payment) && $user->hasCompany($payment->company_id)) { return true; } return false; } /** * Determine whether the user can permanently delete the model. * * @return mixed */ public function forceDelete(User $user, Payment $payment): bool { if (BouncerFacade::can('delete-payment', $payment) && $user->hasCompany($payment->company_id)) { return true; } return false; } /** * Determine whether the user can send email of the model. * * @return mixed */ public function send(User $user, Payment $payment) { if (BouncerFacade::can('send-payment', $payment) && $user->hasCompany($payment->company_id)) { return true; } return false; } /** * Determine whether the user can delete models. * * @return mixed */ public function deleteMultiple(User $user) { if (BouncerFacade::can('delete-payment', Payment::class)) { return true; } return false; } }