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