@if (session('status'))
{{-- @include('partials.deletemodal') --}}
@include('layouts.footers.auth')
{{ session('status') }}
@endif
@if (session('deleteStatus'))
{{ session('deleteStatus') }}
@endif
Invoices
Invoices for previous months revenue.
{{--
--}}
Websites
No. | @sortablelink('user.name', 'User') | @sortablelink('user.email', 'Email') | Payment method | Period | @sortablelink('revenue', 'Revenue') | Status | |
---|---|---|---|---|---|---|---|
{{ $index + 1 + ($invoices->currentPage() - 1) * $invoices->perPage() }} | {{ $invoice->user->name }} | {{ $invoice->user->email }} | {{ $invoice->user->payment_method?->method ?? 'N/A' }} | {{ $invoice->period->format('M Y') }} | $ {{ $invoice->revenue }} | @if (isset($invoice->paid_at)) Paid @else Unpaid @endif |
Invoices are generated automatically on 1st day of every
month