@can('Countries create')
@endcan
Countries
| # | ID | Name | Currency | State | Status | Action |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $row->id }} | {{ $row->name }} | {{ $row->currency }} | States | @can('Countries status') @if ($row->status == 'active') Active @else inactive @endif @endcan | @can('Countries edit') @endcan @can('Countries delete') @endcan |