@foreach($compare as $cour) @php $c = App\Course::where('id', $cour->course_id)->first(); @endphp |
{{ $c->title }} |
@endforeach
Price |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
{{ $c->price }} | @endforeach
Discount Price |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
@if($c->discount_price) {{ $c->discount_price }} @else @endif | @endforeach
{{ __('Language')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
@php
$lang = App\Language::where('id', $c->language_id)->first();
@endphp
{{ $lang->name }} |
@endforeach
{{ __('Last updated at')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
{{ date('d-M-Y', strtotime($c->updated_at)); }} |
@endforeach
{{ __('Duration end time')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
@if($c->duration && $c->duration_type) {{ $c->duration }} {{ $c->duration_type }} @else {{ __('Life time')}} @endif |
@endforeach
{{ __('Requirements')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
{{ $c->requirement }} |
@endforeach
{{ __('Short Detail')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
{{ $c->short_detail }} |
@endforeach
{{ __('Category')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
@php
$cate = App\Categories::where('id', $c->category_id)->first();
@endphp
{{ $cate->title }} |
@endforeach
{{ __('Sub Category')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
@php
$subcate = App\SubCategory::where('id', $c->subcategory_id)->first();
@endphp
{{ $subcate->title }} |
@endforeach
{{ __('Certificate')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
@if($c->certificate_enable == 1) @else @endif |
@endforeach
{{ __('Appointment')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
@if($c->appointment_enable == 1) @else @endif |
@endforeach
{{ __('Assignment')}} |
@foreach($compare as $cour)
@php
$c = App\Course::where('id', $cour->course_id)->first();
@endphp
@if($c->assignment_enable == 1) @else @endif |
@endforeach
@foreach($compare as $cour) | {{ __("Remove") }} | @endforeach