@extends('front.include.app') @section('title') Exhibitions @endsection @section('content')

{{ $exhibitions->banner_title ?? '' }}

@foreach($Exhibitions as $exhibition)
{{ $exhibition->name }}

{{ \Carbon\Carbon::parse($exhibition->date)->format('F j, Y') }} | {{ \Carbon\Carbon::parse($exhibition->time)->format('h:i A') }} | {{ $exhibition->location }}

{{ $exhibition->name }}

{{ $exhibition->description }}

@endforeach
@endsection