@extends('layouts.admin') @section('content')

Dashboard

Total Users

{{ $users }}

View all

Journey

{{ $journey }}

View all

Posts

$posts

View all
Sl No User Content Like Comment
1
User John Doe
"Amazing content! Keep it up!" 120 8
2
User Jane Smith
"Loved this challenge!" 89 2
3
User Ali Khan
"Could use more detail next time." 54 1
@foreach($journeys as $key => $journey) @endforeach
Sl No User Title Destination Accommodation Acc. hyperlink Cost Created Date Actions
{{ $loop->iteration }} {{ $journey->user->first_name ?? '' }} {{ $journey->user->last_name ?? '' }} {{ $journey->title }} {{ $journey->destination }} {{ $journey->accommodation}} @if(!empty($journey->accommodation_link)) View @else No Link Available @endif AED {{ $journey->total}} {{ $journey->created_at->format('d M, Y - h:i A') }}
@endsection @section('script') @endsection