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
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
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',
|
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
|
|
|
}
|
2018-10-15 14:40:34 +02:00
|
|
|
}
|