@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 ($topics as $topic) @include('partials.masterclass-card', ['topic' => $topic]) @endforeach
{{-- Tabs for each date --}} @foreach ($dates as $date) @php $formattedId = \Carbon\Carbon::parse($date->date)->format('M_d'); @endphp
@foreach ($topics->where('master_date_id', $date->id) as $topic) @include('partials.masterclass-card', ['topic' => $topic]) @endforeach
@endforeach
@endsection