@extends('backend.layouts.app') @section('title', \App\Http\Helpers\MenuHelper::getPageTitle()) @section('content')

All Data Dashboard

@can('data-dashboard.create') Create New @endcan
@forelse($data as $item) @empty @endforelse
# Title Sorting Col Span Status Actions
@if(count($data) > 1) @else @endif {{ ($data->currentPage() - 1) * $data->perPage() + $loop->iteration }} {{ $item->title ?? '-' }} {{ $item->sorting ?? '-' }} {{ $item->col_span ?? 1 }} @if ($item->activation_status === null) No Status @elseif ($item->activation_status) Active @else Inactive @endif
@can('data-dashboard.update') @endcan @can('data-dashboard.delete')
@csrf @method('DELETE')
@endcan

No data found

Click the "Create New" button to add your first entry.

{{ $data->appends(request()->query())->links('vendor.pagination.custom') }}
@endsection @push('scripts') @endpush