芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/erp.digitalhubbd.com/app/Policies/PaymentPurchasePolicy.php
first(); return $user->hasRole($permission->roles); } /** * Determine whether the user can create models. * * @param \App\Models\User $user * @return mixed */ public function create(User $user) { $permission = Permission::where('name', 'payment_purchases_add')->first(); return $user->hasRole($permission->roles); } /** * Determine whether the user can update the model. * * @param \App\Models\User $user * @param \App\Models\PaymentPurchase $PaymentPurchase * @return mixed */ public function update(User $user) { $permission = Permission::where('name', 'payment_purchases_edit')->first(); return $user->hasRole($permission->roles); } /** * Determine whether the user can delete the model. * * @param \App\Models\User $user * @param \App\Models\PaymentPurchase $PaymentPurchase * @return mixed */ public function delete(User $user) { $permission = Permission::where('name', 'payment_purchases_delete')->first(); return $user->hasRole($permission->roles); } public function Reports_payments_Purchases(User $user) { $permission = Permission::where('name', 'Reports_payments_Purchases')->first(); return $user->hasRole($permission->roles); } /** * Determine whether the user can view the model. * * @param \App\Models\User $user * @param \App\Models\PaymentPurchase $PaymentPurchase * @return mixed */ public function check_record(User $user, $payment) { return $user->id === $payment->user_id; } /** * Determine whether the user can restore the model. * * @param \App\Models\User $user * @param \App\Models\PaymentPurchase $PaymentPurchase * @return mixed */ public function restore(User $user) { // } /** * Determine whether the user can permanently delete the model. * * @param \App\Models\User $user * @param \App\Models\PaymentPurchase $PaymentPurchase * @return mixed */ public function forceDelete(User $user) { // } }