%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/staging/.trash/resources.1/views/pdf/
Upload File :
Create Path :
Current File : /home/staging/.trash/resources.1/views/pdf/invoice.blade.php

<!DOCTYPE html>
<html>
<head>
    <style>
        body {
            font-family: 'Helvetica', 'Arial', sans-serif;
        }
        .invoice-header {
            text-align: center;
        }
        .invoice-details {
            margin-top: 20px;
        }
        .items-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
        }
        .items-table th, .items-table td {
            border: 1px solid black;
            padding: 10px;
            text-align: left;
        }
        .total-row {
            font-weight: bold;
        }
        .images_logo{
            color:#000;
        }
    </style>
</head>
<body>
<h1 class="invoice-header">Service Invoice</h1>

<div class="invoice-details">
    <p><strong>Invoice #: </strong>{{ $create_order->id }}</p>
    <p><strong>Date: </strong>{{ $data_pdf['date'] }}</p>
    <p><strong>Client Name: </strong>{{ $user_data->name }}</p>
    <p><strong>Email: </strong>{{ $user_data->email }}</p>
    <p><strong>Card Number: </strong>************{{ $data['payment_source']['card']['last_digits'] }}</p>
    <p><strong>Card Name: </strong>{{ $data['payment_source']['card']['name'] }}</p>

</div>

<table class="items-table">
    <thead>
    <tr>
        <th>Service Name</th>
        <th>Vendor Name</th>
        <th>Vendor Email</th>
        <th>Price</th>
    </tr>
    </thead>
    <tbody>
    @foreach ($service_all_data as $service)
        <tr>
            <td>{{ $service->name }}</td>
            <td>{{ $service->user_details->name }}</td>
            <td>{{ $service->user_details->email }}</td>
            <td>${{ $service->price }}</td>
        </tr>
    @endforeach
    </tbody>
</table>
</body>
</html>

Zerion Mini Shell 1.0