@extends('layouts.admin', ['pageTitle' => __('Shell preview'), 'active' => 'shell.preview']) @section('title', __('Shell preview')) @section('page-actions') {{ __('Style guide') }} {{ __('New item') }} @endsection @section('content')

{{ __('This page renders the S0.1 admin shell exactly as future business modules will consume it: sidebar, topbar, page header, and content grid.') }}

@foreach ([ ['label' => 'System Configuration', 'status' => 'success'], ['label' => 'Database Migration Structure', 'status' => 'success'], ['label' => 'Environment Configuration', 'status' => 'success'], ['label' => 'Global Helper Functions', 'status' => 'success'], ['label' => 'Error Handling', 'status' => 'success'], ['label' => 'Logging System', 'status' => 'success'], ['label' => 'Base / Guest / Auth / Admin Layouts', 'status' => 'success'], ['label' => 'Bootstrap 5.3 UI Foundation', 'status' => 'success'], ['label' => 'Theme System (light + dark + system)', 'status' => 'success'], ['label' => 'Responsive Layout', 'status' => 'success'], ['label' => 'Common & Navigation Components','status' => 'success'], ] as $item)
{{ $item['label'] }}
{{ __('Production ready') }}
{{ __('Done') }}
@endforeach
{{ __('App name') }}
{{ $__product['name'] }}
{{ __('Version') }}
v{{ $__product['version'] }}
{{ __('Env') }}
{{ config('app.env') }}
{{ __('PHP') }}
{{ PHP_VERSION }}
{{ __('Locale') }}
{{ app()->getLocale() }}
{{ __('Timezone') }}
{{ config('app.timezone') }}
@endsection