@extends('layouts.admin') @section('header', 'Invoice Management') @section('content')
Manage your invoices and billing
Invoice # | Client | Date | Due Date | Total | Status | Actions |
---|---|---|---|---|---|---|
{{ $invoice->invoice_number }}
@if($invoice->project)
{{ $invoice->project->name }}
@endif
|
{{ $invoice->client->name }}
|
{{ \Carbon\Carbon::parse($invoice->issue_date)->format('M d, Y') }}
|
{{ \Carbon\Carbon::parse($invoice->due_date)->format('M d, Y') }}
|
{{ number_format($invoice->total, 2) }}
|
{{ ucfirst(str_replace('_', ' ', $invoice->status)) }} | |