@extends('themes.schumann.layout.layout')
@section('title', trans('site.schedule'))
@section('bodyClass', 'schedule-page')
@section('content')
{{ trans('site.schedule') }}
@foreach($items as $item)
{{ $item->translate->title }}
@if($item->start_date)
{{ Carbon::parse($item->start_date)->format('d.m.y') }}
@endif
@if($item->end_date)
{{ Carbon::parse($item->end_date)->format('d.m.y') }}
@endif
@endforeach
@endsection