- Implemented dashboard view with vehicle stats, active services, recent activity, and upcoming appointments. - Created estimates view with filtering options and a list of service estimates. - Developed invoices view to manage service invoices and payment history with filtering. - Added vehicles view to display registered vehicles and their details. - Built work orders view to track the progress of vehicle services with filtering and detailed information.
146 lines
8.6 KiB
PHP
146 lines
8.6 KiB
PHP
<div>
|
|
<div class="mb-8">
|
|
<h1 class="text-2xl font-bold text-gray-900">Invoices</h1>
|
|
<p class="text-gray-600">View and manage your service invoices and payment history.</p>
|
|
</div>
|
|
|
|
<!-- Filters -->
|
|
<div class="bg-white rounded-lg shadow p-6 mb-6">
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700 mb-2">Status</label>
|
|
<select wire:model.live="filterStatus" class="w-full border-gray-300 rounded-md shadow-sm focus:border-blue-500 focus:ring-blue-500">
|
|
<option value="">All Statuses</option>
|
|
<option value="pending">Pending</option>
|
|
<option value="completed">Completed</option>
|
|
<option value="cancelled">Cancelled</option>
|
|
</select>
|
|
</div>
|
|
<div class="flex items-end">
|
|
<button wire:click="$set('filterStatus', '')"
|
|
class="px-4 py-2 border border-gray-300 rounded-md text-gray-700 hover:bg-gray-50">
|
|
Clear Filters
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Invoices List -->
|
|
<div class="bg-white rounded-lg shadow overflow-hidden">
|
|
@if($invoices->count() > 0)
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full divide-y divide-gray-200">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Invoice #</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Vehicle</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Amount</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="bg-white divide-y divide-gray-200">
|
|
@foreach($invoices as $invoice)
|
|
<tr class="hover:bg-gray-50">
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="text-sm font-medium text-gray-900">#{{ $invoice->order_number }}</div>
|
|
<div class="text-sm text-gray-500">Service Order</div>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="text-sm text-gray-900">
|
|
{{ $invoice->vehicle->year ?? '' }}
|
|
{{ $invoice->vehicle->make ?? '' }}
|
|
{{ $invoice->vehicle->model ?? '' }}
|
|
</div>
|
|
<div class="text-sm text-gray-500">{{ $invoice->vehicle->license_plate ?? '' }}</div>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="text-sm text-gray-900">{{ $invoice->completed_at ? \Carbon\Carbon::parse($invoice->completed_at)->format('M j, Y') : 'N/A' }}</div>
|
|
<div class="text-sm text-gray-500">{{ $invoice->completed_at ? \Carbon\Carbon::parse($invoice->completed_at)->format('g:i A') : '' }}</div>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="text-sm font-medium text-gray-900">${{ number_format($invoice->total_amount, 2) }}</div>
|
|
@if($invoice->labor_cost + $invoice->parts_cost != $invoice->total_amount)
|
|
<div class="text-sm text-gray-500">
|
|
Labor: ${{ number_format($invoice->labor_cost, 2) }}
|
|
Parts: ${{ number_format($invoice->parts_cost, 2) }}
|
|
@if($invoice->tax_amount > 0)
|
|
+ Tax: ${{ number_format($invoice->tax_amount, 2) }}
|
|
@endif
|
|
</div>
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium
|
|
@switch($invoice->status)
|
|
@case('completed')
|
|
bg-green-100 text-green-800
|
|
@break
|
|
@case('cancelled')
|
|
bg-red-100 text-red-800
|
|
@break
|
|
@case('pending')
|
|
bg-yellow-100 text-yellow-800
|
|
@break
|
|
@default
|
|
bg-gray-100 text-gray-800
|
|
@endswitch
|
|
">
|
|
{{ ucfirst($invoice->status) }}
|
|
</span>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
|
|
<span class="text-blue-600">View Details</span>
|
|
@if($invoice->status === 'completed')
|
|
<span class="text-gray-300 mx-2">|</span>
|
|
<span class="text-purple-600">Download Available</span>
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
@if($invoices->hasPages())
|
|
<div class="px-6 py-3 border-t border-gray-200">
|
|
{{ $invoices->links() }}
|
|
</div>
|
|
@endif
|
|
@else
|
|
<div class="text-center py-12">
|
|
<svg class="mx-auto h-12 w-12 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path>
|
|
</svg>
|
|
<h3 class="mt-2 text-sm font-medium text-gray-900">No invoices found</h3>
|
|
<p class="mt-1 text-sm text-gray-500">
|
|
@if($filterStatus)
|
|
Try adjusting your filters or contact us about your service history.
|
|
@else
|
|
You don't have any invoices yet. Complete a service to see invoices here.
|
|
@endif
|
|
</p>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
@if($invoices->count() > 0)
|
|
<div class="mt-6 bg-blue-50 border border-blue-200 rounded-lg p-4">
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<svg class="h-5 w-5 text-blue-400" fill="currentColor" viewBox="0 0 20 20">
|
|
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd"></path>
|
|
</svg>
|
|
</div>
|
|
<div class="ml-3">
|
|
<h3 class="text-sm font-medium text-blue-800">Service History</h3>
|
|
<div class="mt-2 text-sm text-blue-700">
|
|
<p>You have {{ $invoices->count() }} completed service order(s) totaling ${{ number_format($invoices->sum('total_amount'), 2) }}.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|