@extends('layouts.master') @section('styles') @endsection @section('content') @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('admin.dashboard')], ['label' => 'Setting', 'url' =>route('admin.settings'), 'active' => false], ['label' => 'Pages', 'url' => '#', 'active' => true], ]; @endphp
Add Page @php $columns = [ ['checkbox' => false, 'class' => 'ps-4', 'label' => '#'], ['label' => 'Title'], ['label' => 'URL'], ['label' => 'Status'], ['label' => 'Action'], ]; @endphp
@endsection @section('scripts') @include('layouts.components.common-script') @vite('resources/assets/js/modal.js') @endsection