@extends('admin.layout.master') @section('title') Inventory @endsection @section('content')
@include('admin.layout.laravel_errors')
Inventory
@forelse($inventories as $i=>$inventory) @empty @endforelse
Id Category Product Quantity Remaining Quantity Price Total Price Sale Price Created At Updated At Edit Delete
{{ $i+1 }} {{ ($inventory->category_data) ? $inventory->category_data->name : '--' }} {{ ($inventory->subcategory_data) ? $inventory->subcategory_data->name : '--' }}
@endsection @section('script') @endsection