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

Expenses

@if (session()->has('type')) @endif {{-- Supply form --}}
Add New Supply
@csrf
{{-- --}}
@foreach ($products as $product)
@php $className = $product->product_id > 2 ? 'readonly' : ''; @endphp
@endforeach
Add Stock
{{-- Table form --}}
@if (session()->has('type')) @endif @if ($errors->any()) @endif
@forelse ($supplies as $supply) @empty @endforelse
Company Vehicle Total Amount Date Action
{{ $supply->company_name }} {{ $supply->vehicle_number }} {{ $supply->total_amount }} {{ $supply->supply_date }}
{!! btnDelete('supply.destroy', 'supply', $supply->supply_id) !!}
No record found.
@endsection