@extends('backend.layout') @section('content')
{{ __('Countries') }}
@includeIf('backend.partials.languages')
{{ __('Add Country') }}
@if (count($countries) == 0)

{{ __('NO COUNTRIES FOUND') . '!' }}

@else
@foreach ($countries as $country) @endforeach
{{ __('Name') }} {{ __('Status') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ $country->name }} @if ($country->status == 1)

{{ __('Active') }}

@else

{{ __('Deactive') }}

@endif
{{ $country->serial_number }}
@csrf
@endif
{{-- create modal --}} @include('backend.event.specification.country.create') {{-- edit modal --}} @include('backend.event.specification.country.edit') @endsection