@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') Add New @stop @section('content') @include('oxygen::dashboard.partials.table-allItems', [ 'tableHeader' => ['ID #', 'Title', 'Description', 'User Type', 'Actions|text-right'], ]) @foreach ($allItems as $item) {{ $item->id }} {{ $item->title }} {{ \Illuminate\Support\Str::limit($item->description, 50) }} {{ $item->user_type }}
Edit
{{ method_field('delete') }} {{ csrf_field() }}
@endforeach @stop