@extends('layouts.admin') {{trans('home.countries')}} @section('content')
{{trans('home.countries')}}

{{trans('home.table_contain_all_data_shortly_you_can_view_more_details')}}

@foreach($countries as $country) @endforeach
{{trans('home.id')}} {{trans('home.name_en')}} {{trans('home.name_ar')}} {{trans('home.status')}}
{{$country->id}} {{$country->name_en}} {{$country->name_ar}} @if($country->status == 1) {{trans('home.yes')}} @else {{trans('home.no')}} @endif
@endsection