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

All Products Demand

@foreach($companies as $company) @endforeach
@if(request('search') || request('company_filter')) Clear @endif
@if(request('search') && $demands->isEmpty())
No results found for "{{ request('search') }}".
@endif
@forelse ($demands as $demand) @empty @endforelse
ID Product Name Company Name Supplier Name Quantity Reminder Actions
{{ $demand->id }} {{ $demand->product_name }} {{ $demand->company_name }} {{ $demand->supplier_name }} {{ $demand->qty }} {{ $demand->reminder }}
@csrf @method('DELETE')
No records found.

📝 Add a Note

@csrf
@endsection