@extends('admin.layout.main') @section('title', 'SEO Management | ') @section('content')
All SEO Entries
@if (Session::has('msg'))

{{ Session::get('msg') }}

@endif Add SEO Entry @php $startIndex = ($seos->currentPage() - 1) * $seos->perPage() + 1; @endphp @foreach ($seos as $seo) @endforeach
# Page URL Script Created At Action
{{ $startIndex++ }} {{ $seo->page_url }} {{ \Illuminate\Support\Str::limit($seo->script, 50) }} {{ \Carbon\Carbon::parse($seo->created_at)->isoFormat('Do MMMM YYYY') }}
@csrf @method('DELETE')
{{ $seos->links() }}
@endsection