@extends('layouts.frontend') @section('content')
{{ $page->title }}
{{ $page->sub_title }}
@foreach($industries as $industry) @endforeach
@__('Date')
@__('Location')
@__('Industry')
@__('Name')
@foreach($upcoming_events as $upcoming_event)
{{ $upcoming_event->date_string }}, {{ $upcoming_event->location->title ?? '' }}
{{ $upcoming_event->location->title ?? '' }}
{{ $upcoming_event->industry->title ?? '' }}
{{ $upcoming_event->show->title ?? '' }}
{{ $upcoming_event->industry->title ?? '' }}
@endforeach
@endsection