2018-10-15 14:40:34 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-03-08 08:33:42 +01:00
|
|
|
/**
|
|
|
|
* App\Models\Country
|
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property string|null $capital
|
|
|
|
* @property string|null $citizenship
|
|
|
|
* @property string|null $country_code
|
|
|
|
* @property string|null $currency
|
|
|
|
* @property string|null $currency_code
|
|
|
|
* @property string|null $currency_sub_unit
|
|
|
|
* @property string|null $full_name
|
|
|
|
* @property string|null $iso_3166_2
|
|
|
|
* @property string|null $iso_3166_3
|
|
|
|
* @property string|null $name
|
|
|
|
* @property string|null $region_code
|
|
|
|
* @property string|null $sub_region_code
|
|
|
|
* @property bool $eea
|
|
|
|
* @property bool $swap_postal_code
|
|
|
|
* @property bool $swap_currency_symbol
|
|
|
|
* @property string|null $thousand_separator
|
|
|
|
* @property string|null $decimal_separator
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|StaticModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|StaticModel exclude($columns)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCapital($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCitizenship($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCountryCode($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCurrency($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCurrencyCode($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCurrencySubUnit($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereDecimalSeparator($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereEea($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereFullName($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIso31662($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIso31663($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereName($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereRegionCode($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereSubRegionCode($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereSwapCurrencySymbol($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereSwapPostalCode($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Country whereThousandSeparator($value)
|
|
|
|
* @mixin \Eloquent
|
|
|
|
*/
|
2019-09-12 03:28:41 +02:00
|
|
|
class Country extends StaticModel
|
2018-10-15 14:40:34 +02:00
|
|
|
{
|
2018-10-16 13:42:43 +02:00
|
|
|
public $timestamps = false;
|
|
|
|
|
2019-09-17 12:27:48 +02:00
|
|
|
protected $casts = [
|
|
|
|
'eea' => 'boolean',
|
|
|
|
'swap_postal_code' => 'boolean',
|
|
|
|
'swap_currency_symbol' => 'boolean',
|
2020-12-17 11:53:20 +01:00
|
|
|
'thousand_separator' => 'string',
|
|
|
|
'decimal_separator' => 'string',
|
2019-09-26 00:27:26 +02:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
2019-09-17 12:27:48 +02:00
|
|
|
];
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-08-29 06:07:04 +02:00
|
|
|
/**
|
|
|
|
* Localizes the country name for the clients language.
|
2019-12-30 22:59:12 +01:00
|
|
|
*
|
2019-08-29 06:07:04 +02:00
|
|
|
* @return string The translated country name
|
|
|
|
*/
|
|
|
|
public function getName() :string
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return trans('texts.country_'.$this->name);
|
2019-08-29 06:07:04 +02:00
|
|
|
}
|
2023-10-26 04:57:44 +02:00
|
|
|
public function getID() :string
|
|
|
|
{
|
|
|
|
return $this->id;
|
|
|
|
}
|
2018-10-15 14:40:34 +02:00
|
|
|
}
|