@extends('layouts.seller') @section('title', 'Invoices') @section('content')

Invoices

Review and download your shipment invoices.

@php $statuses = [ 'Paid' => 'bg-green-100 text-green-800', 'Unpaid' => 'bg-yellow-100 text-yellow-800', 'Overdue' => 'bg-red-100 text-red-800', ]; @endphp @for ($i = 0; $i < 7; $i++) @php $status = array_rand($statuses); @endphp @endfor
Invoice ID Date Amount Status Actions
INV-{{ rand(1000, 9999) }}-{{ now()->subWeeks($i)->format('Ym') }} {{ now()->subWeeks($i)->format('d M, Y') }} PKR {{ number_format(rand(5000, 25000), 2) }} {{ $status }} Download

Pagination placeholder

@endsection