@extends('layouts.sidebar')
@section('title', 'Nomadic-Locations')
@section('content')
| Location |
|
@if(!empty($data) && $data->count())
@foreach($data as $dt)
| {{$dt->location}} |
|
@endforeach
@else
| No record found |
@endif
|
|
@endsection
@section('footer_scripts')
@endsection