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