@extends('layouts.admin') @section('content')
{{--      --}} Export
Packing List   -   {{ \Carbon\Carbon::now()->format('l, d F Y') }}
@if (count($data['package']))
@foreach ($data['package'] as $item) @endforeach
${{ number_format($item['package_price'], 2) }} {{ $item['package_title'] }} {{ $item['tiffins'] }}
@else

No tiffin today!

@endif
Total Tiffins {{ $data['total_tiffins'] }}
@if (count($data['roti'])) @foreach ($data['roti'] as $k => $v) @endforeach @endif
{{ $k }} Roti Tiffins {{ $v }} {{ $k }} {{ $k * $v }}
Total Rotis {{ $data['total_roti'] }}
@if (count($data['primary'])) @foreach ($data['primary'] as $pk => $pv) @endforeach @endif
Primary Veg
{{ $pk }} {{ $pv }}
@if (count($data['secondary'])) @foreach ($data['secondary'] as $pk => $pv) @endforeach @endif
Secondary Veg
{{ $pk }} {{ $pv }}
@if (count($data['other'])) @foreach ($data['other'] as $k => $v) @if (count($v) > 0) @endif @endforeach @if (count($v) > 0) @foreach ($v as $k2 => $v2) @endforeach @endif @endif
{{ $k }}
{{ $k2 }} {{ $v2 }}
@endsection