@extends('dashboard.layouts.app') @section('title', __('dashboard.Custom Pages')) @section('page_heading', __('dashboard.Custom Pages')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.Add New Custom Page') }} @endsection @section('content')

{{ __('dashboard.Custom Pages') }} {{ $customPages->count() }} {{ trans_choice('dashboard.Custom Page', $customPages->count()) }}

@if($customPages->count() > 0)
@foreach ($customPages as $customPage) @endforeach
{{ __('dashboard.ID') }} {{ __('dashboard.Name') }} {{ __('dashboard.Title') }} {{ __('dashboard.Slug') }} {{ __('dashboard.Active') }} {{ __('dashboard.Actions') }}
{{ $customPage->id }} {{ $customPage->name }} {{ $customPage->title }} {{ $customPage->slug }} {{ $customPage->is_active ? __('dashboard.Active') : __('dashboard.Inactive') }}
@csrf @method('DELETE')
@else
{{ __('dashboard.No custom pages found.') }}
@endif
@endsection @section('scripts') @endsection