/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
admin
/
order
/
/home/techb158/ileadtechnology.com/resources/views/admin/order
mkdir
upload
Name
Size
Mode
Actions
create.blade.php
2270
0644
edit
dl
rm
index.blade.php
4424
0644
edit
dl
rm
view.blade.php
11368
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/admin/order/view.blade.php
(11368B)
@extends('admin.layouts.master') @section('title', 'View Order - Admin') @section('body') <section class="content"> @include('admin.message') <div class="row"> <div class="col-md-12"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">{{ __('adminstaticword.Invoice') }}</h3> </div> <div class="panel-body"> <div id="printableArea"> <!-- title row --> <div class="row"> <div class="col-xs-12"> <h2 class="page-header"> @if($setting->logo_type == 'L') <div class="logo-invoice"> <img src="{{ asset('images/logo/'.$setting->logo) }}"> </div> @else() <a href="{{ url('/') }}"><b><div class="logotext" >{{ $setting->project_title }}</div></b></a> @endif <small>{{ __('adminstaticword.Date') }}: {{ date('jS F Y', strtotime($show['created_at'])) }}</small> </h2> </div> <!-- /.col --> </div> <!-- info row --> <div class="view-order"> <div class="row invoice-info"> <div class="col-sm-4 invoice-col"> {{ __('adminstaticword.From') }}: @if($show->course_id != NULL) <address> <strong>{{ $show->courses->user['fname'] }}</strong><br> Address: {{ $show->courses->user['address'] }}<br> @if($show->courses->user['state_id'] == !NULL) {{ $show->courses->user->state['name'] }}, @endif @if($show->courses->user['country_id'] == !NULL) {{ $show->courses->user->country['name'] }} @endif <br> {{ __('adminstaticword.Phone') }}: {{ $show->courses->user['mobile'] }}<br> {{ __('adminstaticword.Email') }}: {{ $show->courses->user['email'] }} </address> @else <address> <strong>{{ $show->bundle->user['fname'] }}</strong><br> {{ __('frontstaticword.address') }}: {{ $show->bundle->user['address'] }}<br> @if($show->bundle->user->state_id == !NULL) {{ $show->bundle->user->state['name'] }}, @endif @if($show->bundle->user->state_id == !NULL) {{ $show->bundle->user->country['name'] }} @endif <br> {{ __('frontstaticword.Phone') }}: {{ $show->bundle->user['mobile'] }}<br> {{ __('frontstaticword.Email') }}: {{ $show->bundle->user['email'] }} </address> @endif </div> <!-- /.col --> <div class="col-sm-4 invoice-col"> {{ __('adminstaticword.To') }}: <address> <strong> @if(Auth::user()->role == "admin") {{$show->user['fname'] }} {{$show->user['lname']}} @else @if($gsetting->hide_identity == 0) {{$show->user['fname'] }} {{$show->user['lname']}} @else Hidden @endif @endif </strong><br> {{ __('adminstaticword.Address') }}: {{ $show->user['address'] }}<br> @if($show->user['state_id'] == !NULL) {{ $show->user->state['name'] }}, @endif @if($show->user['country_id'] == !NULL) {{ $show->user->country['name'] }}<br> @endif {{ __('adminstaticword.Phone') }}: @if(Auth::user()->role == "admin") {{ $show->user['mobile'] }} @else @if($gsetting->hide_identity == 0) {{ $show->user['mobile'] }} @else Hidden @endif @endif <br> {{ __('adminstaticword.Email') }}: @if(Auth::user()->role == "admin") {{ $show->user['email'] }} @else @if($gsetting->hide_identity == 0) {{ $show->user['email'] }} @else Hidden @endif @endif </address> </div> <!-- /.col --> <div class="col-sm-4 invoice-col"> <br> <b>{{ __('adminstaticword.OrderID') }}:</b> {{ $show['order_id'] }}<br> <b>{{ __('adminstaticword.TransactionId') }}:</b> {{ $show['transaction_id'] }}<br> <b>{{ __('adminstaticword.PaymentMethod') }}:</b> {{ $show['payment_method'] }}<br> <b>{{ __('adminstaticword.Currency') }}:</b> {{ $show['currency'] }} <b>{{ __('frontstaticword.PaymentStatus') }}:</b> @if($show->status ==1) {{ __('adminstaticword.Recieved') }} @else {{ __('adminstaticword.Pending') }} @endif </br> <b>{{ __('adminstaticword.Enrollon') }}:</b> {{ date('jS F Y', strtotime($show['created_at'])) }}</br> <b> @if($show->enroll_expire != NULL) {{ __('adminstaticword.EnrollEnd') }}:</b> {{ date('jS F Y', strtotime($show['enroll_expire'])) }}</br> @endif <br> @if($show->proof != NULL) <a href="{{ asset('images/order/'.$show->proof) }}" download="{{$show->proof}}" title="Course">Download Proof <i class="fa fa-download"></i></a></br> @endif <br> </div> <!-- /.col --> </div> </div> <!-- /.row --> <div class="order-table"> <table class="table table-striped"> <thead> <tr> <th>{{ __('adminstaticword.Course') }}</th> <th>{{ __('adminstaticword.Instructor') }}</th> <th>{{ __('adminstaticword.Currency') }}</th> @if($show->coupon_discount != 0) <th>{{ __('adminstaticword.CouponDiscount') }}</th> @endif <th>{{ __('adminstaticword.Total') }}</th> </tr> </thead> <tbody> <tr> <td> @if($show->course_id != NULL) {{ $show->courses['title'] }} @else {{ $show->bundle['title'] }} @endif </td> <td> @if($show->course_id != NULL) {{ $show->courses->user['email'] }} @else {{ $show->bundle->user['email'] }} @endif </td> <td>{{ $show['currency'] }}</td> @if($show->coupon_discount != 0) <td> (-) <i class="{{ $show['currency_icon'] }}"></i>{{ $show['coupon_discount'] }} </td> @endif <td> @if($show->coupon_discount == !NULL) <i class="fa {{ $show['currency_icon'] }}"></i>{{ $show['total_amount'] - $show['coupon_discount'] }} @else <i class="fa {{ $show['currency_icon'] }}"></i>{{ $show['total_amount'] }} @endif </td> </tr> </tbody> </table> </div> @if($show->bundle_id != NULL) @foreach($show->bundle_course_id as $bundle_course) @php $coursess = App\Course::where('id', $bundle_course)->first(); @endphp <div class="purchase-table table-responsive"> <table class="table"> <tbody> <tr> <td> <div class="purchase-history-course-img display-inline-flex"> @if($coursess['preview_image'] !== NULL && $coursess['preview_image'] !== '') <img src="{{ asset('images/course/'. $coursess->preview_image) }}" class="img-fluid" alt="course"> @else <img src="{{ Avatar::create($coursess->title)->toBase64() }}" class="img-fluid" alt="course"> @endif </div> <div class="purchase-history-course-title display-inline-flex" style="vertical-align: top;"> {{ $coursess->title }} </div> </td> </tr> </tbody> </table> </div> @endforeach @endif </div> <input type="button" class="btn btn-primary" onclick="printDiv('printableArea')" value="Print Invoice" /> </div> </div> </div> </div> </section> @endsection @section('scripts') <script> $(document).ready(function() { $('.js-example-basic-single').select2(); }); </script> <script lang='javascript'> function printDiv(divName) { var printContents = document.getElementById(divName).innerHTML; var originalContents = document.body.innerHTML; document.body.innerHTML = printContents; window.print(); document.body.innerHTML = originalContents; } </script> @endsection
Save
cmd:
run