@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('Pages')) @section('titlebar_actions') {{ __('Add Page') }} @endsection @section('content')
{{ __('Title') }} {{ __('Status') }} {{ __('Updated At') }} {{ __('Actions') }} @foreach ($list as $entry) {{ $entry->title }} {{ $entry->status == 1 ? __('Active') : __('Passive') }}

{{ date('j.n.Y', strtotime($entry->created_at)) }} {{ date('H:i:s', strtotime($entry->created_at)) }}

@if ($app_is_demo) @else @if ($entry->role != 'default') @endif @endif @endforeach
@endsection @push('script') @endpush