1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Country.php

42 lines
906 B
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Country extends StaticModel
{
public $timestamps = false;
2019-09-17 12:27:48 +02:00
protected $casts = [
'eea' => 'boolean',
'swap_postal_code' => 'boolean',
'swap_currency_symbol' => 'boolean',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
2019-09-17 12:27:48 +02:00
];
2019-08-29 06:07:04 +02:00
/**
* Localizes the country name for the clients language.
*
* @return string The translated country name
*/
public function getName() :string
{
return trans('texts.country_' . $this->name);
}
2019-09-17 12:27:48 +02:00
}
2019-09-17 12:27:48 +02:00