/home/techb158/ileadtechnology.com/resources/views/front
NameSizeModeActions
blog/-0755rm
certificate/-0755rm
coming_soon/-0755rm
error_page/-0755rm
help/-0755rm
purchase_history/-0755rm
quiz/-0755rm
user_profile/-0755rm
about.blade.php210240644editdlrm
batch_detail.blade.php104510644editdlrm
bbl_detail.blade.php59160644editdlrm
bundle_detail.blade.php205310644editdlrm
careers.blade.php150570644editdlrm
cart.blade.php160490644editdlrm
category.blade.php501240644editdlrm
checkout.blade.php498350644editdlrm
contact.blade.php58070644editdlrm
course_content.blade.php1045100644editdlrm
course_detail.blade.php1136730644editdlrm
instructor.blade.php117790644editdlrm
my_course.blade.php394250644editdlrm
search.blade.php95120644editdlrm
watchlist.blade.php77850644editdlrm
wishlist.blade.php113120644editdlrm
zoom_detail.blade.php31230644editdlrm
Edit: /home/techb158/ileadtechnology.com/resources/views/front/cart.blade.php (16049B)
@extends('theme.master') @section('title', 'Cart') @section('content') @include('admin.message')

{{ __('frontstaticword.ShoppingCart') }}

@php $item = App\Cart::where('user_id', Auth::User()->id)->get(); if(count($item)>0){ echo count($item); } else{ echo "0"; } @endphp {{ __('frontstaticword.CoursesinCart') }}

@if(count($item)>0)
@foreach($carts as $cart)
@if($cart->course_id != NULL) @if($cart->courses['preview_image'] !== NULL && $cart->courses['preview_image'] !== '') blog @else blog @endif @else @if($cart->bundle['preview_image'] !== NULL && $cart->bundle['preview_image'] !== '') blog @else blog @endif @endif
@if($cart->course_id != NULL)
{{ $cart->courses->user->fname }}
@else
{{ $cart->bundle->user->fname }}
@endif
{{ csrf_field() }}
{{ csrf_field() }}
    @php $currency = App\Currency::first(); @endphp @if($cart->offer_price == !NULL)
  • {{ $cart->offer_price }}
  • {{ $cart->price }}
  • @else
  • {{ $cart->price }}
  • @endif
@if($cart->disamount == !NULL) @if(Session::has('coupanapplied'))
@endif @endif
@endforeach
iscart==1 && $ad->status==1) { $code = $ad->code; echo html_entity_decode($code); } } ?>
@if(! $carts->isEmpty())
@php $cartitems = App\Cart::where('user_id', Auth::User()->id)->first(); @endphp @if ($cartitems == NULL) {{ __('frontstaticword.empty') }} @else

{{ __('frontstaticword.Total') }}:

  • {{ __('frontstaticword.TotalPrice') }}{{ $price_total }}
  • {{ __('frontstaticword.OfferDiscount') }}{{ $price_total - $offer_total }}
  • {{ __('frontstaticword.CouponDiscount') }} @if( $cpn_discount == !NULL) {{ $cpn_discount }} @else {{ __('frontstaticword.ApplyCoupon') }} @endif
  • {{ __('frontstaticword.DiscountPercent') }}{{ round($offer_percent, 0) }}% {{ __('frontstaticword.off') }}

  • {{ __('frontstaticword.Total') }}:{{ $cart_total }}
{{ csrf_field() }}
@endif

{{ csrf_field() }}
@if(Session::has('fail'))
{{ Session::get('fail') }}
@endif @if(Session::has('coupanapplied'))
{{ csrf_field() }}
{{Session::get('coupanapplied')['msg']}}
@endif @endif
@else
{{ __('frontstaticword.cartempty') }}
@endif
@endsection