@php $pageName = "application"; $subpageName = "workshop_list"; @endphp @extends('layouts.app') @section('css') @endsection @section('content')
@if(Session::has('message')) @endif
@foreach($workshops as $item) @endforeach
# Title Type City Venue Participants Date Action
{{ $loop->iteration }} {{ $item->ttle ?? '' }} {{ $item->typename->name ?? '' }} {{ $item->city ?? '' }} {{ $item->venue ?? '' }} {{ $item->particiants ?? '' }} {{ \Carbon\Carbon::parse($item->start_date)->format('j M Y') }} - {{ \Carbon\Carbon::parse($item->end_date)->format('j M Y') }} Participants Facilitators
@endsection @section('scripts') ' ' @endsection