@extends('layouts.app') @section('title', 'Vendor Credits') @section('content')
| Credit Number | Date | Vendor Name | Total Amount | Balance | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $credit->credit_number }} | {{ $credit->date->format('d M Y') }} | {{ $credit->vendor->name }} | {{ formatCurrency($credit->total) }} | {{ formatCurrency($credit->remaining_amount) }} | @php $statusColors = [ 'open' => 'bg-success', 'applied' => 'bg-info', 'refunded' => 'bg-secondary', ]; @endphp {{ ucfirst($credit->status) }} | |
|
No vendor credits found. Create New Vendor Credit |
||||||