@extends('oxygen::layouts.master-dashboard') @section('breadcrumbs') {{ lotus()->breadcrumbs([ ['Dashboard', route('dashboard')], // ['Change The Resource Name', route('')], [$pageTitle, null, true] ]) }} @stop @section('pageMainActions') @include('oxygen::dashboard.partials.searchField') Add New @stop {{-- DELETE THIS IF NOT USED @section('pageSummary')
Content to be inserted at the bottom of the page
@stop --}} @section('content') @include('oxygen::dashboard.partials.table-allItems', [ 'tableHeader' => [ 'ID', 'Name', 'Created', 'Actions|text-right' ] ]) @foreach ($allItems as $item) {{ $item->id }} {{ $item->name }} @if ($item->created_at) {{ standard_datetime($item->created_at) }} @endif
Edit {{--
{{ method_field('put') }} {{ csrf_field() }} @if ($item->is_completed) @else @endif
--}} @if (isset($isDestroyingEntityAllowed) && $isDestroyingEntityAllowed === true)
{{ method_field('delete') }} {{ csrf_field() }}
@endif
@endforeach @stop