@extends('admin.layouts.master') @section('title',' Countries') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __("#")}} | {{ __("Country Name")}} | {{ __("ISO Code 2")}} | {{ __("ISO Code 3")}} | {{ __("Action")}} | |||
---|---|---|---|---|---|---|---|
{{ __('Are You Sure') }} ?{{ __('Do you really want to delete selected item names here? This process cannot be undone') }}. |
1 | {{ $country->nicename }} | {{ $country->iso }} | {{ $country->iso3 }} |
@can('locations.country.edit')
{{ __("Edit")}}
@endcan
@can('locations.country.delete')
{{ __("Delete")}}
@endcan
|