@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'))
{{ session()->get('message') }}
@endif
{{ __('ID') }} |
{{ __('Category') }} |
{{ __('Sub Category') }} |
{{ __('Customer') }} |
{{ __('Quantity') }} |
{{ __('Action') }} |
@foreach($inventories as $inventory)
{{ $inventory->id }} |
{{ $inventory->category->name }} |
{{ $inventory->subcategory->name }} |
{{ $inventory->customer->name }} |
{{ $inventory->quantity }} |
|
@endforeach
@endsection
@section('vendor-script')
@livewireScripts
{{-- vendor files --}}
@endsection
@section('page-script')
{{-- Page js files --}}
@endsection