Success! {{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
List of Attractions
Name | Location | Holiday | Entry Type | Photo | Created On | |
---|---|---|---|---|---|---|
No attractions found | @else @foreach ($attractions as $attraction)||||||
{{ $attraction->name }} | @if($attraction->location_id != 0 && $attraction->location) {{ $attraction->location->name }}, ({{ $attraction->location->city->name }},{{ $attraction->location->city->state->name }}, {{ $attraction->location->city->state->country->name }}) @else No Location @endif | {{ $attraction->holiday }} | @if( $attraction->free_ticket == '1') Free Entry @elseif( $attraction->free_ticket == '0') Paid Entry @endif |
@if(!empty($attraction->image_path) && file_exists(public_path('storage/resize/' . $attraction->image_path)))
![]() |
{{ $attraction->created_at }} | @if ($canEdit) Edit @endif @if ($canDelete) Delete @endif |