@extends("admin.template.layout") @section("header") @stop @section("content")
@if(check_permission('country','Create'))
Create Country
@endif
@foreach($countries as $country) @endforeach
# Name Code Dial Code Status Created Date Action
{{$i}} {{$country->name}} {{$country->prefix}} {{$country->dial_code}} @if($country->active) Active @else Inactive @endif {{web_date_in_timezone($country->created_at,'d-M-Y h:i A')}}
@stop @section("script") @stop