@extends('layouts.app') @section('title', $page_title) @php $schedules = json_decode($warmup_plan->schedule, true); $days = array_keys($schedules); // X-axis (Days) $emails = array_values($schedules); // Y-axis (Emails) @endphp @push('scripts') @endpush @section('content')
@csrf @method('PUT')
{{__('app.days')}}
{{__('app.emails')}}
@php $schedules = json_decode($warmup_plan->schedule); @endphp @foreach($schedules as $day => $schedule)
{{$day+1}}
{{$schedule}}
@endforeach
@endsection