@extends('admin.layouts.master')
@section('title','branch Page')
@section('content')
Table
| # |
Created At |
English name |
Arabic name |
link |
image |
Action |
@foreach($hotspotareas as $hotspot)
| {{$loop->iteration}} |
{{$hotspot->created_at->format('Y-m-d')}} |
{{$hotspot->name_en}} |
{{$hotspot->name_ar}} |
{{$hotspot->link}} |
 |
|
@endforeach
{{$hotspotareas->appends($_GET)->links()}}
@endsection