@extends('dashboard.layout.layout') @section('content')
{!! trans('dashboard.country.countries') !!}
{!! $countries->links() !!}
@foreach ($countries as $country) @endforeach
# {!! trans('dashboard.country.country') !!} {!! trans('dashboard.country.nationality') !!} {!! trans('dashboard.city.city_count') !!} {!! trans('dashboard.branch.branch_count') !!} {!! trans('dashboard.general.added_date') !!} {!! trans('dashboard.general.control') !!}
{{ $loop->iteration }} {{ $country->name }} {{ $country->nationality }} {{ $country->cities->count() }} {{ $country->branches->count() }}
{{ $country->created_at->format("Y-m-d") }}
{!! $countries->links() !!}
@include('dashboard.layout.delete_modal') @endsection @section('vendor_styles') @endsection @section('page_styles') @endsection @include('dashboard.country.scripts')