@extends('admin.layouts.master') @section('title','All Countries') @section('maincontent') @component('components.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('Countries') }} @endslot @slot('menu1') {{ __('Countries') }} @endslot @slot('button')
{{ __("#")}} | {{ __("Country Name")}} | {{ __("ISO Code 2")}} | {{ __("ISO Code 3")}} | {{ __("Action")}} |
---|---|---|---|---|
1 | {{ $country->nicename }} | {{ $country->iso }} | {{ $country->iso3 }} |
@can('locations.country.edit')
{{ __("Edit")}}
@endcan
@can('locations.country.delete')
{{ __("Delete")}}
@endcan
|