芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/erp.digitalhubbd.com/app/Policies/ShipmentPolicy.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', 'shipment')->first(); return $user->hasRole($permission->roles); } /** * Determine whether the user can update the model. * * @param \App\Models\User $user * @param \App\Models\Shipment $shipment * @return mixed */ public function update(User $user) { $permission = Permission::where('name', 'shipment')->first(); return $user->hasRole($permission->roles); } /** * Determine whether the user can delete the model. * * @param \App\Models\User $user * @param \App\Models\Shipment $shipment * @return mixed */ public function delete(User $user) { $permission = Permission::where('name', 'shipment')->first(); return $user->hasRole($permission->roles); } /** * Determine whether the user can restore the model. * * @param \App\Models\User $user * @param \App\Models\Shipment $shipment * @return mixed */ public function restore(User $user) { // } /** * Determine whether the user can permanently delete the model. * * @param \App\Models\User $user * @param \App\Models\Shipment $shipment * @return mixed */ public function forceDelete(User $user) { // } }