@extends('layout.admin')
@section('title')
Regions List
@endsection
@section('content')
# |
Name |
Banner Image |
Actions |
@if ($data->count() > 0)
@php $i = 1; @endphp
@foreach ($data as $zone)
{{ $i }} |
{!! $zone->name !!}
|
|
|
@php $i++ @endphp
@endforeach
@else
No data found
|
@endif
@endsection
@section('js-add')
@endsection