@extends('includes.main') @section('main-container')

Stock Report

{{-- Table form --}}
@if (session()->has('type')) @endif @if ($errors->any()) @endif
Stock Profit & Lost Report
@foreach ($profitAndLost as $item) @endforeach
Date Product Stock Old Sale Price New Sale Price Price Difference Profit Or Lost
{{$item->date}} {{$item->title}} {{$item->stock}} {{$item->old_salePrice}} {{$item->new_salePrice}} {{$item->price_difference}} {{$item->profitAndLost}}
@endsection