|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/lecturebazaar.com/resources/views/admin/financial/sales/ |
Upload File : |
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" name="viewport">
<title>{{ $pageTitle ?? '' }} </title>
<meta name="csrf-token" content="{{ csrf_token() }}">
<!-- General CSS File -->
<link rel="stylesheet" href="/assets/admin/vendor/bootstrap/bootstrap.min.css"/>
<link rel="stylesheet" href="/assets/vendors/fontawesome/css/all.min.css"/>
<link rel="stylesheet" href="/assets/admin/css/style.css">
<link rel="stylesheet" href="/assets/admin/css/custom.css">
<link rel="stylesheet" href="/assets/admin/css/components.css">
<style>
{!! !empty(getCustomCssAndJs('css')) ? getCustomCssAndJs('css') : '' !!}
</style>
</head>
<body>
<div id="app">
<section class="section">
<div class="container mt-5">
<div class="row">
<div class="col-12 col-md-10 offset-md-1 col-lg-10 offset-lg-1">
<div class="card card-primary">
<div class="row m-0">
<div class="col-12 col-md-12">
<div class="card-body">
<div class="section-body">
<div class="invoice">
<div class="invoice-print">
<div class="row">
<div class="col-lg-12">
<div class="invoice-title">
<h2>{{ $generalSettings['site_name'] }}</h2>
<div class="invoice-number">{{ trans('public.item_id') }}: #{{ $webinar->id }}</div>
</div>
<hr>
<div class="row">
<div class="col-md-6">
<address>
<strong>{{ trans('quiz.student') }}:</strong>
<br>
{{ !empty($sale->buyer) ? $sale->buyer->full_name : '-' }}
<br>
</address>
<address>
<strong>{{ trans('home.organization') }}:</strong><br>
@if($webinar->tracher_id != $webinar->creator_id)
{{ $webinar->creator->full_name }}
@else
-
@endif
<br>
</address>
</div>
<div class="col-md-6 text-md-right">
<address>
<strong>{{ trans('home.platform_address') }}:</strong><br>
{!! nl2br(getContactPageSettings('address')) !!}
</address>
</div>
</div>
<div class="row">
<div class="col-md-6">
<address>
<strong>{{ trans('home.teachers') }}:</strong><br>
{{ $webinar->teacher->full_name }} <br>
@if(!empty($webinar->webinarPartnerTeacher) and count($webinar->webinarPartnerTeacher))
@foreach($webinar->webinarPartnerTeacher as $partner)
{{ $partner->teacher->full_name }}
@endforeach
@endif
</address>
</div>
<div class="col-md-6 text-md-right">
<address>
<strong>{{ trans('panel.purchase_date') }}:</strong><br>
{{ dateTimeFormat($sale->created_at,'Y M j | H:i') }}<br><br>
</address>
</div>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-md-12">
<div class="section-title">{{ trans('home.order_summary') }}</div>
<div class="table-responsive">
<table class="table table-striped table-hover table-md">
<tr>
<th data-width="40">#</th>
<th>{{ trans('cart.item') }}</th>
<th class="text-center">{{ trans('admin/main.type') }}</th>
<th class="text-center">{{ trans('public.price') }}</th>
<th class="text-center">{{ trans('panel.discount') }}</th>
<th class="text-right">{{ trans('cart.total') }}</th>
</tr>
<tr>
<td>{{ $webinar->id }}</td>
<td>{{ $webinar->title }}</td>
<td class="text-center">{{ trans('webinars.'.$webinar->type) }}</td>
<td class="text-center">
@if(!empty($sale->amount))
{{ handlePrice($sale->amount) }}
@else
{{ trans('public.free') }}
@endif
</td>
<td class="text-center">
@if(!empty($sale->discount))
{{ handlePrice($sale->discount) }}
@else
-
@endif
</td>
<td class="text-right">
@if(!empty($sale->total_amount))
{{ handlePrice($sale->total_amount) }}
@else
0
@endif
</td>
</tr>
</table>
</div>
<div class="row mt-4">
<div class="col-lg-12 text-right">
<div class="invoice-detail-item">
<div class="invoice-detail-name">{{ trans('cart.sub_total') }}</div>
<div class="invoice-detail-value">{{ handlePrice($sale->amount) }}</div>
</div>
<div class="invoice-detail-item">
<div class="invoice-detail-name">{{ trans('cart.tax') }} ({{ getFinancialSettings('tax') }}%)</div>
<div class="invoice-detail-value">
@if(!empty($sale->tax))
{{ handlePrice($sale->tax) }}
@else
-
@endif
</div>
</div>
<div class="invoice-detail-item">
<div class="invoice-detail-name">{{ trans('public.discount') }}</div>
<div class="invoice-detail-value">
@if(!empty($sale->discount))
{{ handlePrice($sale->discount) }}
@else
-
@endif
</div>
</div>
<hr class="mt-2 mb-2">
<div class="invoice-detail-item">
<div class="invoice-detail-name">{{ trans('cart.total') }}</div>
<div class="invoice-detail-value invoice-detail-value-lg">
@if(!empty($sale->total_amount))
{{ handlePrice($sale->total_amount) }}
@else
-
@endif
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="text-md-right">
<button type="button" onclick="window.print()" class="btn btn-warning btn-icon icon-left"><i class="fas fa-print"></i> Print</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</body>