@extends('layouts.app') @section('title', 'Workshops Register') @section('styles') @endsection @section('content')
@include('includes.alerts')

WORKSHOP DETAILS

Title: {{ $workshop->title }}

Instructor: {{ $workshop->instructor }}

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

Workshop Time: {{ $workshop->workshop_time }}

Price: {{ $workshop->price ? '$' . number_format($workshop->price, 2) : 'Free' }}

Description: {{ $workshop->description }}

Register for Workshop
@csrf


@endsection @section('scripts') @endsection