133 lines
7.9 KiB
PHP
133 lines
7.9 KiB
PHP
@extends('layouts.admin')
|
|
@push('title', get_phrase('Purchase History'))
|
|
|
|
@section('content')
|
|
<div class="ol-card radius-8px">
|
|
<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('Purchase History') }}
|
|
</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="ol-card">
|
|
<div class="ol-card-body p-3">
|
|
<div class="row print-d-none mb-3 mt-3">
|
|
<div class="col-md-6 pt-md-0 pt-2">
|
|
<div class="custom-dropdown">
|
|
<button class="dropdown-header btn ol-btn-light">
|
|
{{ get_phrase('Export') }}
|
|
<i class="fi-rr-file-export ms-2"></i>
|
|
</button>
|
|
<ul class="dropdown-list">
|
|
<li>
|
|
<a class="dropdown-item" href="#" onclick="downloadPDF('.print-table', 'team_training_payment')"><i class="fi-rr-file-pdf"></i> {{ get_phrase('PDF') }}</a>
|
|
</li>
|
|
<li>
|
|
<a class="dropdown-item" href="#" onclick="window.print();"><i class="fi-rr-print"></i> {{ get_phrase('Print') }}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Table -->
|
|
@if (count($purchases) > 0)
|
|
<div class="admin-tInfo-pagi d-flex justify-content-md-between justify-content-center align-items-center gr-15 flex-wrap">
|
|
<p class="admin-tInfo">
|
|
{{ get_phrase('Showing') . ' ' . count($purchases) . ' ' . get_phrase('of') . ' ' . $purchases->total() . ' ' . get_phrase('data') }}
|
|
</p>
|
|
</div>
|
|
<div class="table-responsive course_list" id="course_list">
|
|
<table class="eTable eTable-2 print-table table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
<th scope="col">{{ get_phrase('User') }}</th>
|
|
<th scope="col">{{ get_phrase('Package') }}</th>
|
|
<th scope="col">{{ get_phrase('Price') }}</th>
|
|
<th scope="col" class="text-center">{{ get_phrase('Issue date') }}</th>
|
|
<th scope="col" class="text-center">{{ get_phrase('Gateway') }}</th>
|
|
<th scope="col" class="print-d-none text-center">{{ get_phrase('Options') }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($purchases as $key => $report)
|
|
<tr>
|
|
<th scope="row">
|
|
<p class="row-number">{{ $key + 1 }}</p>
|
|
</th>
|
|
|
|
<td>
|
|
<div class="dAdmin_profile d-flex align-items-center min-w-200px">
|
|
<div class="dAdmin_profile_img">
|
|
<img class="img-fluid rounded-circle image-45" width="40" height="40" src="{{ get_image(get_user_info($report->user_id)->photo) }}">
|
|
</div>
|
|
<div class="ms-1 mt-1">
|
|
<h4 class="title fs-14px">{{ get_user_info($report->user_id)->name }}</h4>
|
|
<p class="sub-title2 text-12px">{{ get_user_info($report->user_id)->email }}</p>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="sub-title2 text-12px min-w-150px">
|
|
<a href="{{ route('team.package.details', $report->slug) }}">{{ $report->title }}</a>
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="sub-title2 text-12px min-w-150px">
|
|
<p>{{ currency($report->price, 2) }}</p>
|
|
<p><span>{{ get_phrase('Admin :') }} </span>{{ currency($report->admin_revenue, 2) }}</p>
|
|
<p><span>{{ get_phrase('Author :') }} </span>{{ currency($report->instructor_revenue, 2) }}</p>
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="sub-title2 text-12px">
|
|
<p class="text-center">{{ date('d-M-y', strtotime($report->created_at)) }}</p>
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="sub-title2 text-12px text-capitalize">
|
|
<p class="text-center">{{ $report->payment_method }}</p>
|
|
</div>
|
|
</td>
|
|
|
|
<td class="print-d-none">
|
|
<div class="sub-title2 text-12px text-capitalize d-flex justify-content-center">
|
|
<a href="{{ route('admin.team.packages.purchase.invoice', $report->id) }}" class="btn ol-btn-outline-secondary d-flex align-items-center cg-10px">
|
|
<span>{{ get_phrase('Invoice') }}</span>
|
|
</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@else
|
|
@include('admin.no_data')
|
|
@endif
|
|
<!-- Data info and Pagination -->
|
|
@if (count($purchases) > 0)
|
|
<div class="admin-tInfo-pagi d-flex justify-content-md-between justify-content-center align-items-center gr-15 flex-wrap">
|
|
<p class="admin-tInfo">
|
|
{{ get_phrase('Showing') . ' ' . count($purchases) . ' ' . get_phrase('of') . ' ' . $purchases->total() . ' ' . get_phrase('data') }}
|
|
</p>
|
|
{{ $purchases->links() }}
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|