@extends('layouts.app') @section('title', 'Suppliers') @section('content')

Suppliers

Add Supplier
@forelse($suppliers as $s) @empty @endforelse
# Supplier Company Mobile Total Purchase Total Paid Due Actions
{{ $s->id }} {{ $s->name }} {{ $s->company_name ?? '—' }} {{ $s->mobile }} ৳{{ number_format((float) $s->total_purchase, 2) }} ৳{{ number_format((float) $s->total_paid, 2) }} ৳{{ number_format((float) $s->total_due, 2) }}
No suppliers found.
@if($suppliers->hasPages()) @endif
@endsection