@extends('layouts.admin') @section('title', $pageTitle) @section('content') @include('include.admin.toast')

@include('admin.page.search')
@forelse ($pages as $page) @empty @endforelse
{{ __('SR No') }} {{ __('Title') }} {{ __('Slug') }} {{ __('Show in footer') }} {{ __('Action') }}
{{ $pages->firstItem() + $loop->index }} {{ $page->title }} {{ $page->slug }} {{ ucfirst($page->footer) }} {{ __('Edit') }} {{ __('Delete') }}
{{ __('No Records Found') }}
@if ($pages->hasPages())
{{ $pages->links('pagination::bootstrap-5') }}
@endif
@endsection