| Sr. No |
Title |
Media |
Venue |
Date |
Status |
Action |
@if (count($eventWorkshops) > 0)
@php $i = $eventWorkshops->perPage() * ($eventWorkshops->currentPage() - 1) + 1; @endphp
@foreach ($eventWorkshops as $workshop)
| {{ $i++ }} |
{{ $workshop->title ?? '' }} |
@if ($workshop->image)
@endif
|
{{ $workshop->venue ?? '' }} |
{{ $workshop->workshop_date ? date('d-m-Y', strtotime($workshop->workshop_date)) : '' }}
|
|
|
@endforeach
@else
| No Data Found |
@endif
{{ $eventWorkshops->appends(Request::all())->links() }}
@endsection
@section('js')
@endsection