@extends('layouts.app')

@section('content')
    <div class="container">
        <div class="row justify-content-center">
            <div class="offer-container">
                <h3 class="mb-3">My Invoices</h3>
                <table class="table table-hover">
                    <thead>
                    <tr>
                        <th scope="col">#</th>
                        <th scope="col">Number</th>
                        <th scope="col">Status</th>
                        <th scope="col">Date</th>
                        <th scope="col">Price (USD)</th>
                        <th scope="col">Download</th>
                    </tr>
                    </thead>
                    <tbody>
                    @foreach ($invoices as $invoice)
                        <tr>
                            <td>{{ $loop->index+1 }}</td>
                            <td>{{ $invoice->number }}</td>
                            <td>{{ $invoice->status }}</td>
                            <td>{{ $invoice->date()->toFormattedDateString() }}</td>
                            <td>{{ $invoice->total() }}</td>
                            <td>
                                <a href="/invoices/{{ $invoice->id }}">
                                    <button type="button" class="btn btn-primary">Download</button>
                                </a>
                            </td>
                        </tr>
                    @endforeach
                    </tbody>
                </table>
            </div>
        </div>
    </div>
@endsection
