@extends('laundry::layouts/contentLayoutMaster') @section('title', __('History') ) @section('vendor-style') {{-- vendor css files --}} @livewireStyles @endsection @section('page-style') @endsection @section('content') @if(session()->has('message')) @endif
@foreach($inventories as $inventory) @endforeach
{{ __('ID') }} {{ __('Category') }} {{ __('Sub Category') }} {{ __('Customer') }} {{ __('Quantity') }} {{ __('Action') }}
{{ $inventory->id }} {{ $inventory->category->name }} {{ $inventory->subcategory->name }} {{ $inventory->customer->name }} {{ $inventory->quantity }}
@endsection @section('vendor-script') @livewireScripts {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection