@extends('oxygen::layouts.master-dashboard') @section('breadcrumbs') {{ lotus()->breadcrumbs([ ['Home', route('dashboard')], // ['Change The Resource Name', route('')], [$pageTitle, null, true], ]) }} @stop @section('pageMainActions') @include('oxygen::dashboard.partials.searchField') @stop @section('content') @include('oxygen::dashboard.partials.table-allItems', [ 'tableHeader' => ['ID #', 'Name', 'Email','Actions|text-right'], ]) @foreach ($allItems as $item) {{ $item->id }} {{ $item->name }} {{ $item->email }}
Edit
{{ method_field('delete') }} {{ csrf_field() }}
@endforeach @stop