@extends('layouts.admin') @section('title',$Title) @section('content')
@if($message = Session::get('errormsg')) @endif @if($message = Session::get('msg')) @endif
@csrf
@if($errors->any())
{{$errors->first('title',':message')}}
@endif
@php $number = ($locationsList->currentpage()-1)* $locationsList->perpage() + 1;@endphp @forelse($locationsList as $key => $list) @empty @endforelse
# Title Created Action
{{ $number }} {{ucfirst($list->title)}} {{$list->created_at}}
@csrf @method('delete')
No Data Found
# Title Created Action
Showing {{ $locationsList->firstItem() }} to {{ $locationsList->lastItem() }} of total {{$locationsList->total()}} entries
{{ $locationsList->links() }}
@endsection