@extends('cfp.layouts.master')
@section('content')
@php
$sales_array = array();
foreach($results_array as $result){
array_push($sales_array, $result->total_sales);
}
$dates_array = array();
foreach($results_array as $result){
$date = date('d-m-Y - l', strtotime($result->DATE));
array_push($dates_array, $date);
}
$sls_array = json_encode($sales_array, JSON_NUMERIC_CHECK);
@endphp
@endsection
@section('js')
@endsection