@foreach($countries as $key=> $row)
|
|
{{ $row->title }} |
@if(in_array('currency_code', $moduleFields))
@if($row->currency_code)
{{ $row->currency_code }}
@endif
|
@endif
@if(in_array('country_code', $moduleFields))
@if($row->country_code)
{{ $row->country_code }}
@endif
|
@endif
@if(in_array('image', $moduleFields))
@if(!empty($row->image_path))
@endif
|
@endif
{{ __("general.$row->status") }} |
{{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} |
|
@endforeach
@if($countries->hasPages())
@endif