@extends('layouts.admin') @section('content')
All Regions
@if(!empty($regions[0]))
@foreach($regions as $key=>$region) @endforeach
# Name Country Action
{{$region->id}} {{$region->name}} {{$region->country->name}}
{!! method_field('DELETE') !!} {!! csrf_field() !!}

{{ $regions->links() }}
@else

No Records Found

@endif
@endsection @section('footer-content') @endsection