47 lines
892 B
PHP
Raw Permalink Normal View History

2022-06-01 10:15:55 +03:00
<?php
namespace App\View\Components\Index;
use App\Abstracts\View\Component;
class Country extends Component
{
/**
* The Country country.
*
* @var string
*/
public $country;
/**
* The Country code.
*
* @var string
*/
public $code;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($code) {
$this->code = $code;
2022-06-29 18:24:04 +03:00
$this->country = trans('general.na');
2022-06-01 10:15:55 +03:00
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
2023-06-01 16:42:11 +03:00
if (! empty($this->code) && array_key_exists($this->code, trans('countries'))) {
2022-06-29 18:24:04 +03:00
$this->country = trans('countries.' . $this->code);
}
2022-06-01 10:15:55 +03:00
return view('components.index.country');
}
}