@extends("admin.template.layout")
@section("header")
@stop
@section("content")
@if(check_permission('country','Create'))
@endif
# |
Name |
Code |
Dial Code |
Status |
Created Date |
Action |
@foreach($countries as $country)
{{$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')}} |
|
@endforeach
@stop
@section("script")
@stop