@extends('admin.layouts.default') @section('header_styles') @stop @section('content')

@yield('title', 'Product Inventory Details')

Products Listing View

Products Inventory Details

Product Name {{ $inventory->products_name }}
Created By {{ auth()->user()->first_name }} {{ auth()->user()->last_name }}
Supplier Name {{ $inventory->supplier_name }}
Supplier Contact {{ $inventory->supplier_contact }}
Stock {{ $inventory->stock }}
Reference Code {{ $inventory->reference_code }}
Purchase Price {{ $inventory->purchase_price }}
Stock Type {{ $inventory->stock_type }}
@stop @section('footer_scripts') @stop