@extends('layouts.app') @section('site_title', 'Master Classes at IFFI Goa - Learn from Cinema Experts') @section('site_description', 'Join exclusive master classes at IFFI Goa, where renowned filmmakers and industry experts share insights, techniques, and the art of cinematic storytelling.') @section('content') @include('layouts.header') @include('layouts.menu')
{{-- All Tab --}}
@foreach ($dates as $date) @php $dateKey = strtolower(\Carbon\Carbon::parse($date->date)->format('M')) . \Carbon\Carbon::parse($date->date)->format('d'); @endphp @foreach ($topics->where('master_date_id', $date->id)->values() as $i => $topic) @include("master-class-new.{$dateKey}", ['topic' => $topic, 'index' => $i]) @endforeach @endforeach
{{-- Date --}} @foreach ($dates as $date) @php $formattedId = strtolower(\Carbon\Carbon::parse($date->date)->format('M')) . \Carbon\Carbon::parse($date->date)->format('d'); @endphp
@foreach ($topics->where('master_date_id', $date->id)->values() as $i => $topic) @include("master-class-new.{$formattedId}", ['topic' => $topic, 'index' => $i]) @endforeach
@endforeach
{{-- POPUP --}} @endsection