@extends('dashboard.layouts.app') @section('content')
Items
{{-- Success Message --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Table --}} @forelse($items as $item) @empty @endforelse
# Name Created By Created At Actions
{{ $item->id }} {{ $item->name }} {{ optional($item->createdBy)->full_name ?? '-' }} {{ $item->created_at->format('Y-m-d') }}
No items found.
{{ $items->links('pagination::bootstrap-5') }}
{{-- ------------------------ --}} {{-- CREATE MODAL --}} {{-- ------------------------ --}} {{-- ------------------------ --}} {{-- EDIT MODAL --}} {{-- ------------------------ --}} {{-- ------------------------ --}} {{-- DELETE MODAL --}} {{-- ------------------------ --}} @endsection @push('scripts') @endpush