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

Add Trip Lifecycle for Booking Id : {{$data->booking_id}}

@php $raw = $data->stay_date; // The double-encoded JSON string $firstDecode = json_decode($raw, true); // returns a JSON string $dates = json_decode($firstDecode, true); // returns the actual PHP array @endphp
@csrf
    @for($i=0;$i< count($dates);$i++)
  • Day {{$i+1}}

    {{$dates[$i]}}

  • @endfor
@endsection