@extends('admin.layouts.master') @section('title', 'Page list') @section('content')

{{ __('List of Pages') }}

{{-- --}} {{-- --}} {{-- --}} @forelse ($pages as $id => $page) {{-- --}} {{-- --}} {{-- --}} @empty @endforelse
{{ __('#') }} {{ __('Title') }}{{ __('Route') }}{{ __('Type') }} {{ __('Slug') }}{{ __('Link For') }}{{ __('Order No') }}{{ __('Action') }}
{{ ++$id }} {{ __($page->title) }}{{ $page->route_name ?? 'N/A' }}{{ ucfirst(str_replace('-', ' ', $page->type)) }}{{ ucfirst(str_replace('-', ' ', $page->page_link_for)) }}{{ $page->slug }}{{ $page->order_no }} {{-- --}}
{{-- --}} Detail {{--
@csrf
--}}
No Pages available.
@endsection