@extends('components.master') @section('admin')

Travel Journalism

  • Home
  • Travel Journalism
{{-- clients --}}
{{-- Best Resort For --}} {{-- You --}}

Travel Journalism

{{--

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

--}}
@foreach ($travel_journalism as $show) @if ($show->status == 1)
@if ($loop->iteration % 2 == 1) {{-- Odd row: Image first --}}

{{ $show->name }}

(4.8 Rating)
  • Location Visited: {{ $show->location_visit }}
  • Visit Date: {{ $show->date }}
  • Weather Conditions: {{ $show->weather_condition }}
  • Road Conditions: {{ $show->road_condition }}
  • Safety Status: {{ $show->safety_status }}
  • Traveler Comments:
  • {{ $show->traveler_comments }}

@else {{-- Even row: Content first --}}

{{ $show->name }}

(4.8 Rating)
  • Location Visited: {{ $show->location_visit }}
  • Visit Date: {{ $show->date }}
  • Weather Conditions: {{ $show->weather_condition }}
  • Road Conditions: {{ $show->road_condition }}
  • Safety Status: {{ $show->safety_status }}
  • Traveler Comments:
  • {{ $show->traveler_comments }}

@endif
@endif @endforeach
{{-- clients --}} @endsection