@extends('customer.layouts.app')
@section('title', (isset($content->name) ? $content->name : ''). ' Course')
@section('page_css')
@endsection
@section('section')
| ID |
{{$content->id??''}} |
| Course Name |
{{$content->batch->course->name??''}} |
| Batch Name |
{{$content->batch->name??''}} |
| Course Fees |
{{$content->batch->course->fees??''}} |
| Class Type |
{{$content->class_type??''}} |
| Physical Class Type |
{{$content->physical_class_type??''}} |
@if(!is_null($content->batch->date_range))
| Date |
{{$content->batch->date_range??''}} |
| From |
{{Carbon\Carbon::parse($content->batch->time_from)->format('g:i A')??''}} |
| To |
{{Carbon\Carbon::parse($content->batch->time_to)->format('g:i A')??''}} |
@else
| Date |
From |
To |
@foreach($content->batch->batch_dates as $batch_date)
| {{$batch_date->date}} |
{{Carbon\Carbon::parse($batch_date->time_from)->format('g:i A')}} |
{{Carbon\Carbon::parse($batch_date->time_to)->format('g:i A')}} |
@endforeach
@endif
@endsection