@extends('layouts.frontend')
@section('content')
|
Date
|
@foreach($columns as $key => $item)
{{$key}}
|
@endforeach
@foreach($data as $key => $mealRequest)
@foreach ($mealRequest as $key => $value)
|
{{ ($value) ?? 0 }}
|
@endforeach
@endforeach
@endsection
@section('scripts')
@parent
@endsection