@extends('layouts.admin_master') @section('content')
Available Products
@foreach($products as $row) @if($row->stock > '0') @else @endif @endforeach
Code Name Category Stock Unit Price Sales Unit Price Action
{{ $row->product_code }} {{ $row->name }} {{ $row->category }}{{ $row->stock }}Not Available{{ $row->unit_price }} {{ $row->sales_unit_price }} Order
@endsection