@extends('admin.layouts.app') @section('page-title') Pages @endsection @section('content')

Pages list

Add page
@foreach ($pages as $page) @endforeach
ID Title Status
Action
{{ $page->id }} {{ Str::of($page->title)->words(10) }} @if($page->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@endsection @section('scripts') @endsection