@extends('layouts.admin') @section('title', 'Training Calendar') @section('content_header')
Course Type | Training Course | Batch Type | Duration | From Date | To Date | Holidays | Effective Duration | Standard Price | Promotional Offer | Note | Actions |
---|---|---|---|---|---|---|---|---|---|---|---|
{{ $training->course_type }} | {{ $training->training_course }} | {{ $training->batch_type ?? '-' }} | {{ $training->duration ?? '-' }} | {{ $training->from_date ? $training->from_date->format('d/m/Y') : '-' }} | {{ $training->to_date ? $training->to_date->format('d/m/Y') : '-' }} | @if ($training->holidays) {{ Str::limit($training->holidays_display, 30) }} @else - @endif | @if ($training->from_date && $training->to_date) {{ $training->effective_duration }} days @else - @endif | {{ $training->standard_price ? '₹' . number_format($training->standard_price, 2) : '-' }} | {{ $training->promotional_offer ? '₹' . number_format($training->promotional_offer, 2) : '-' }} | @if ($training->note) {{ Str::limit($training->note, 50) }} @else - @endif |
@if ($training->image_path)
No Image
@if ($training->image_path)
@endif
|
No training calendar entries found. |