@extends('layouts.admin_master') @section('content')
Products in Stock
@foreach($products as $row) @if($row->stock > '0') @else @endif @endforeach
Code Name Category Stock Unit Price Sale Price Action
{{ $row->product_code }} {{ $row->name }} {{ $row->category }}{{ $row->stock }}stockout{{ $row->unit_price }} {{ $row->sales_unit_price }} Edit Delete Purchase
@endsection @section('script') @endsection