V1rus Private
User / IP
:
216.73.217.108
Host / Server
:
190.92.174.125 / aerosofthealthcare.com
System
:
Linux s3739.bom1.stableserver.net 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64
Cmd
|
Upload
|
Mass Deface
|
Create
|
Sym
:
/
home
/
aerosoft
/
www
/
pos
/
app
/
Policies
/
Viewing: PaymentPurchasePolicy.php
<?php namespace App\Policies; use App\Models\PaymentPurchase; use App\Models\User; use App\Models\Permission; use Illuminate\Auth\Access\HandlesAuthorization; class PaymentPurchasePolicy { use HandlesAuthorization; /** * Determine whether the user can view any models. * * @param \App\Models\User $user * @return mixed */ public function viewAny(User $user) { // } /** * Determine whether the user can view the model. * * @param \App\Models\User $user * @param \App\Models\PaymentPurchase $PaymentPurchase * @return mixed */ public function view(User $user) { $permission = Permission::where('name', 'payment_purchases_view')->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) { // } }
Coded With 💗 by
HanzOFC