@extends('layouts.admin.master') @section('title') {{ __('Countries') }} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')

{{ __('Countries') }}

@endslot @endcomponent
@foreach ($countries as $country) @endforeach
{{ __('Name') }} {{ __('Image') }} {{ __('Language') }} {{ __('Status') }} {{ __('Action') }}
{{ $country->name }} {{ $country->language->name }} {{ $country->status == 'active' ? 'Activated' : 'Not Activated' }}
@push('scripts') @include('dashbord.include.custom-datatable') @endpush @endsection