/home/techb158/ileadtechnology.com/SSM/app/Policies/reception
NameSizeModeActions
CallLogPolicy.php20060644editdlrm
ComplaintPolicy.php20300644editdlrm
EnquiryPolicy.php19890644editdlrm
GatePassPolicy.php20300644editdlrm
PostalRecord.php21260644editdlrm
VisitorLogPolicy.php20790644editdlrm
VisitorMessagePolicy.php12480644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Policies/reception/PostalRecord.php (2126B)
can('create-postal-record') || $user->can('edit-postal-record'); } /** * Determine whether the user can list all the postal record. * * @param \App\User $user * @param \App\Models\Reception\PostalRecord $postal_record * @return mixed */ public function list(User $user) { return $user->can('list-postal-record'); } /** * Determine whether the user can create postal record. * * @param \App\User $user * @return mixed */ public function create(User $user) { return $user->can('create-postal-record'); } /** * Determine whether the user can view the postal record. * * @param \App\User $user * @param \App\Models\Reception\PostalRecord $postal_record * @return mixed */ public function show(User $user) { return $user->can('list-postal-record'); } /** * Determine whether the user can update the postal record. * * @param \App\User $user * @param \App\Models\Reception\PostalRecord $postal_record * @return mixed */ public function update(User $user) { return $user->can('edit-postal-record'); } /** * Determine whether the user can delete the postal record. * * @param \App\User $user * @param \App\Models\Reception\PostalRecord $postal_record * @return mixed */ public function delete(User $user) { return $user->can('delete-postal-record'); } }