@extends('layouts.app-admin') @section('content')

Manage Inventory

Manage Inventory
@foreach($product as $key=>$row) @endforeach
Sr. No. Product Code Title Price Stock Stock Status Action
{{$key+1}} {{$row->sku}} {{$row->title}} £{{$row->price}} {{@$row->stock}} @if($row->stock!='0') Stock Availability @else Out Of Stock @endif
@endsection @section('script') @endsection