@extends('layouts.app') @section('link') @endsection @section('content')
@include('shared.messages')

{{!isset($changed_countries) ? __('texte.countries_arr.index.countries') : __('texte.countries_arr.index.revised_countries')}}


@permission('country-form-active-read')
@endpermission {{isset($changed_countries) ? __('texte.countries_arr.index.countries') :__('texte.countries_arr.index.revised_countries')}}
@if(isset($countries)) @foreach ($countries as $country) @endforeach @else @foreach ($changed_countries as $country) @endforeach @endif
{{strtoupper(__('texte.countries_arr.index.id'))}} {{__('texte.countries_arr.index.name')}} {{__('texte.countries_arr.index.phone_code')}} {{__('texte.countries_arr.index.vat')}} {{__('texte.countries_arr.index.active_f')}}
{{ $country->id }} {{ $country->name }} {{ $country->code }} {{ $country->vat }} {{ App\Model::ACTIVE[$country->active] }}
{{ $country->id }} {{ $country->name }} {{ $country->code }} {{ $country->vat }} {{ App\Model::ACTIVE[$country->active] }}
@endsection