@extends('admin.layouts.app') @section('title', 'Pages') @section('content')

Pages

Manage static pages

Add Page
@foreach ($pages as $page) @endforeach
Title Slug Status Updated Actions
{{ $page->title }} /{{ $page->slug }} {{ $page->is_active ? 'Active' : 'Draft' }} {{ $page->updated_at->format('M d, Y') }}
@csrf @method('DELETE')
@endsection