@include('includes.header') @include('includes.alerts')

{{ $pageContent->workshop_title }}

@foreach ($workshops as $workshop) @if (\Carbon\Carbon::parse($workshop->workshop_date)->isFuture())

{{ $workshop->title }}

DATE: {{ \Carbon\Carbon::parse($workshop->workshop_date)->format('F j, Y') }}

{{ $workshop->description }}

@if ($workshop->price)

Price: ${{ number_format($workshop->price, 2) }}

@else

Price: Free

@endif @if ($workshop->form_fields) @php $formFields = json_decode($workshop->form_fields, true); @endphp

Register Now

@csrf @foreach ($formFields as $field)
@if ($field['type'] == 'text') @elseif($field['type'] == 'email') @elseif($field['type'] == 'textarea') @elseif($field['type'] == 'select') @endif
@endforeach @if ($workshop->price > 0) @else @endif
@endif
@endif @endforeach

{{ $pageContent->workshop_des1 }} {{ $pageContent->workshop_des_link_title1 }}

{{ $pageContent->workshop_des2 }} {{ $pageContent->workshop_des_link_title2 }} {{-- --}}

{{ $pageContent->contact_page_title }}

The Peack Agency Address
{{ $pageContent->contact_address }}

{!! $pageContent->contact_map_link !!}

Follow & Like Us

@include('includes.footer')