@extends('layouts.admin-layout')
@section('title', 'All Locations ')
@section('content')
Location
| S.N. |
Location Name |
Location slug |
Action |
@foreach ($get_locations as $location)
| {{ $loop->iteration }} |
{{ $location->title ?: '' }} |
{{ $location->slug ?: '' }} |
|
@endforeach
@endsection
@section('script')
@endsection