@extends('frontend::layouts.master') @section('content')

My Trips

    @php $cntgauge = 1; @endphp @foreach($trips as $trip )
  • {{ ucfirst($trip->from_loc) }} to {{ ucfirst($trip->to_loc) }}

    {{ date('D, d M', strtotime($trip->from_date)) }} - {{ date('D, d M', strtotime($trip->to_date)) }}

    • Eco-certified
    • Hybrid
    • Sustainable
    • Carbon Footprint
    {{$trip->emisson_rate}} Kg
    Co2 emissions
  • @php $cntgauge = $cntgauge+1; @endphp @endforeach @if (count($trips) <= 0)
  • @endif
@endsection @section('scripts') @endsection