/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/bundle_detail.blade.php (20531B)
@php $url = URL::current(); @endphp @extends('theme.master') @section('title', "$bundle->title") @section('content') @include('admin.message')
@if ($bundle->type == 1) @if ($bundle->is_subscription_enabled == 1)
    @php $currency = App\Currency::first(); @endphp @if ($bundle->discount_price == !null)
  • {{ $bundle['discount_price'] }}/{{ $bundle->billing_interval }}
  • {{ $bundle['price'] }}/{{ $bundle->billing_interval }}
  • @else
  • {{ $bundle['price'] }}/{{ $bundle->billing_interval }}
  • @endif
@else
    @php $currency = App\Currency::first(); @endphp @if ($bundle->discount_price == !null)
  • {{ $bundle['discount_price'] }}
  • {{ $bundle['price'] }}
  • @else
  • {{ $bundle['price'] }}
  • @endif
@endif @if (Auth::check()) @if (Auth::User()->role == 'admin') @else @php $order = App\Order::where('user_id', Auth::User()->id)->where('bundle_id', $bundle->id)->first(); @endphp @if (!empty($order) && $order->status == 1) @else @php $cart = App\Cart::where('user_id', Auth::User()->id)->where('bundle_id', $bundle->id)->first(); @endphp @if (!empty($cart))
{{ csrf_field() }}
@else
{{ csrf_field() }}
@endif @endif @endif @else
@if ($bundle->is_subscription_enabled == 1)  {{ __('frontstaticword.SubscribeNow') }} @else  {{ __('frontstaticword.AddToCart') }} @endif
@endif @else
  • {{ __('frontstaticword.Free') }}
@if (Auth::check()) @if (Auth::User()->role == 'admin') @else @php $enroll = App\Order::where('user_id', Auth::User()->id)->where('bundle_id', $bundle->id)->first(); @endphp @if ($enroll == null) @else @endif @endif @else @endif @endif

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

  • {!! $bundle->detail !!}

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

@php // FSMS function convertToHoursMins($time, $format = '%02d:%02d') { if ($time < 1) { return; } $hours =floor($time / 60); $minutes = ($time % 60); return sprintf($format, $hours, $minutes); } $courseCount = count( $bundle['course_id'] ) // FSMS @endphp   {{ $courseCount . " courses" }}
@foreach ($bundle->course_id as $bundles) @php $course = App\Course::where('id', $bundles)->first(); @endphp
{{ $course->short_detail }}
@endforeach
@endsection @section('custom-script') @endsection