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

Product List | Main stock product list

Name
Category
@if(count($ProductList)>0) @foreach($ProductList as $data) @if($data->InactiveProduct==0) @endif @if($data->InactiveProduct==1) @endif @endforeach @endif
ID Category Vendor Name Description CP SP Profit Qty Date Status Action
{{$data->ProductID}} {{$data->CategoryName}} {{$data->VendorName}} {{$data->ProductName}} {{$data->ProductDescription}} {{ round($data->CostPrice,2) }} {{ round($data->SalePrice,2) }} {{ round($data->SalePrice - $data->CostPrice,2) }} {{ round($data->Qty,2) }} {{ date('d/m/y', strtotime($data->created_at)) }}
{!!$ProductList->links()!!}
@endsection