| Name | Phone Code | Iso Code 2 | Image | Created at | Status | Action |
|---|---|---|---|---|---|---|
| {{ $country->name }} | {{ $country->phone_code }} | {{ $country->iso_code_2 }} |
@if ($country->image)
|
{{ date_format($country->created_at, 'd-m-Y') }} | {{ $country->is_active ? 'Active' : 'Inactive' }} |
@if (!$country->trashed())
@if (auth()->user()->hasPermission('country.show'))
@endif
@if (auth()->user()->hasPermission('country.edit'))
{{-- edit --}}
@endif
@if (auth()->user()->hasPermission('country.delete'))
@endif
{{-- delete --}}
@else
{{-- restore --}}
{{-- delete permanently --}}
@endif
|