@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; $logged_in_user = Auth::user(); @endphp

{{ __('Storage Items') }}

@if (session('success')) @endif @if (session('error')) @endif @if ($errors->any()) @endif
Create Storage Item
@csrf
Please enter a title.
Please enter a unique permalink.
Permalink is auto-generated from the title. You can adjust if needed.
Storage Items Table
@forelse($storageItems as $item) @empty @endforelse
Title Permalink Price Status Sort Order Actions
{{ $item->title }} {{ $item->permalink }} @if (!is_null($item->price)) ${{ number_format($item->price, 2) }} @else - @endif @if ($item->is_active) Active @else Inactive @endif {{ $item->sort_order ?? '-' }}
No data
Title Permalink Price Status Sort Order Actions
@include('Admin.Includes.footer')