@extends(backpack_view('blank')) @section('content') @php $data = \App\Models\MasterItem::with('category','uom')->find(request()->route('id')); $items = \App\Models\MasterItemListSet::with('item','item.category','item.uom')->where('master_item_set', $data->id)->get(); $suppliers = \App\Models\MasterItemSupplier::with('supplier')->where('master_item_id', $data->id)->get(); @endphp