@extends('layouts.inspinia') @section('title', 'Supplier Statements') @section('content_header', 'Supplier Statements') @section('breadcrumb') @endsection @section('content') {{-- Filters --}}
Clear
{{-- Table --}}
@forelse($suppliers as $supplier) @empty @endforelse
Supplier Name Phone Email TIN Current Balance Statement
{{ $supplier->name }} {{ $supplier->phone ?? '—' }} {{ $supplier->email ?? '—' }} {{ $supplier->tin ?? '—' }} {{ number_format($supplier->current_balance, 2) }}
No suppliers found.
@endsection