@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.name_required')}}
{{__('app.plan_details')}}
{{__('app.schedule_visualization')}}
{{__('app.daily_schedule')}}
@php $schedules = json_decode($warmup_plan->schedule); @endphp @foreach($schedules as $day => $schedule) @endforeach
{{__('app.days')}} {{__('app.emails')}}
Day {{$day+1}} {{$schedule}}
{{__('app.growth_chart')}}
{{__('app.back_to_list')}}
@endsection