@if (count($wishlist) > 0)
{{ __('Event Name') }} |
{{ __('Action') }} |
@foreach ($wishlist as $item)
@php
$content = DB::table('event_contents')
->where('event_id', $item->event_id)
->select('title', 'slug')
->first();
@endphp
@if ($content)
{{ $content->title }}
|
{{ __('Details') }}
{{ __('Remove') }}
|
@endif
@endforeach
@else
{{ __('No Event Found') . '.' }}
@endif