@extends("admin.admin_app") @section("content")

Countries List

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif @foreach($countries as $i => $country) @endforeach
SNo. Short Name Country Name Phone Code Status Actions
{{ $i+1 }} {{ $country->sortname }} {{ $country->country_name }} {{ $country->phonecode }} @if($country->status=='0') @else @endif
@endsection