JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "invoice.blade.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/instructor/team_training/invoice.blade.php
File size: 5.4 KB
MIME-type: text/plain
Charset: utf-8

@extends('layouts.instructor')
@push('title', get_phrase('Invoice'))

@section('content')
    <div class="ol-card radius-8px print-d-none">
        <div class="ol-card-body py-12px px-20px my-3 py-4">
            <div class="d-flex align-items-center justify-content-between flex-md-nowrap flex-wrap gap-3">
                <h4 class="title fs-16px">
                    <i class="fi-rr-settings-sliders me-2"></i>
                    {{ get_phrase('Invoice') }}
                </h4>
            </div>
        </div>
    </div>

    <div class="ol-card mb-30px">
        <div class="ol-card-body p-20px">
            <div class="pb-20px ol-border-bottom mb-30px">
                <div class="mb-20px">
                    <h5 class="title fs-16px mb-10px text-capitalize">{{ get_phrase('Invoice') }}</h5>
                    <p class="sub-title fs-16px text-break">{{ $invoice->invoice }}</p>
                </div>
                <ul class="ol-list-group-2 max-w-280px">
                    <li>
                        <span class="title fs-16px fw-normal text-capitalize">{{ get_phrase('Issue Date') }}</span>
                        <span class="title2 fs-16px">{{ date('d M, Y') }}</span>
                    </li>
                    <li>
                        <span class="title fs-16px fw-normal text-capitalize">{{ get_phrase('Purchase Date') }}</span>
                        <span class="title2 fs-16px">{{ date('d M, Y', strtotime($invoice->created_at)) }}</span>
                    </li>
                </ul>
            </div>
            <div class="pb-20px ol-border-bottom mb-20px">
                <div class="row">
                    <div class="col-lg-10">
                        <div class="d-flex justify-content-between flex-wrap gap-3">
                            <div>
                                <h4 class="title fs-18px text-capitalize mb-20px">{{ get_phrase('Invoice To') }}</h4>
                                @php
                                    $user = get_user_info($invoice->user_id);
                                @endphp
                                <ul class="ol-list-group-2">
                                    <li class="title fs-16px fw-normal text-capitalize">{{ $user->name }}</li>
                                    <li class="title fs-16px fw-normal text-capitalize">{{ $user->email }}</li>
                                    <li class="title fs-16px fw-normal text-capitalize">{{ $user->address }}</li>
                                    <li class="title fs-16px fw-normal text-capitalize">{{ $user->phone }}</li>
                                </ul>
                            </div>
                            <div class="max-w-280px w-100">
                                <h4 class="title fs-18px text-capitalize mb-20px">{{ get_phrase('Payment Details') }}</h4>
                                <ul class="ol-list-group-2 w-100">
                                    <li>
                                        <span class="title fs-16px fw-normal text-capitalize">{{ get_phrase('Total') }}</span>
                                        <span class="title2 fs-16px">{{ currency(number_format($invoice->price, 2)) }}</span>
                                    </li>
                                    <li>
                                        <span class="title fs-16px fw-normal text-capitalize">{{ get_phrase('Due') }}</span>
                                        <span class="title2 fs-16px">{{ currency(number_format($invoice->price, 2)) }}</span>
                                    </li>
                                    <li>
                                        <span class="title fs-16px fw-normal text-capitalize">{{ get_phrase('Payment Method') }}</span>
                                        <span class="title2 fs-16px text-capitalize">{{ $invoice->payment_method }}</span>
                                    </li>
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="invoice-table-wrap">
                <!-- Table  -->
                <div class="table-responsive">
                    <table class="ol-table text-nowrap mb-3 table">
                        <thead>
                            <tr>
                                <th scope="col">{{ get_phrase('Description') }}</th>
                                <th scope="col" class="text-center">{{ get_phrase('Quantity') }}</th>
                                <th scope="col" class="text-center">{{ get_phrase('Price') }}</th>
                                <th scope="col" class="text-end">{{ get_phrase('Amount') }}</th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                                <td>{{ $invoice->title }}</td>
                                <td class="text-center">1</td>
                                <td class="text-center">{{ currency(number_format($invoice->price, 2)) }}</td>
                                <td class="text-end">{{ currency(number_format($invoice->price, 2)) }}</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
                <a href="#" onclick="window.print();" class="btn ol-btn-light-primary ol-btn-rounded print-d-none">{{ get_phrase('Print') }}</a>
            </div>
        </div>
    </div>
@endsection