@extends('layouts.app') @extends('layouts.head') @section('content')

食材消費履歴

consomation
{{-- 通常指示 --}} {{-- 日付 対象商品入力 --}}
@csrf
SHOP
DATE
{{-- 検索結果表示 start BistroNippon --}} @if(Request::is('search') && Session::get('shop_now') == 'main' )
Ramen消費数: {{ $total_qty_rmn }}

詳細 Close

@foreach ($ramen_datas as $datas) @endforeach

Udon消費数: {{ $total_qty_udn }}

詳細 Close

@foreach ($udon_datas as $datas) @endforeach

餃子消費
@php $total_gyoza = 0; @endphp @foreach ($gyoza_collect as $item) @foreach ($item as $key => $val) {{ $key }} : {{ $item[$key] }} 個
@php $total_gyoza += $item[$key] @endphp @endforeach @endforeach

合計: {{ @$total_gyoza }} 個


Paiko消費
@foreach ($paikos_ary as $key => $val) {{ $key }}:{{ $val }}
@endforeach

米消費

🍚 {{ $riz_grammes_total }} グラム / {{ number_format($riz_grammes_total / 330, 1) }}合

@foreach ($riz_resultats as $item) @foreach ($item as $key => $val) {{ $key }} : {{ $item[$key] }}
@endforeach @endforeach [ Extra_米 ] @foreach ($extra_collect as $item) @foreach ($item as $key => $val) @if( $key == 'riz') {{ $key }} : {{ $item[$key] }}
@endif @endforeach @endforeach

エクストラ
@foreach ($extra_collect as $item) @foreach ($item as $key => $val) {{ $key }} : {{ $item[$key] }}
@endforeach @endforeach

商品消費量
@foreach ($product_collect as $item) @foreach ($item as $key => $val) {{ $key }} : {{ $item[$key] }}
@endforeach @endforeach

@endif {{-- 検索結果表示 BistroNippon END--}} {{-- 検索結果表示 CurryKitano start --}} @if(Request::is('search') && Session::get('shop_now') == 'currykitano' )

消費量
    @foreach ($product_collect as $item) @foreach ($item as $key => $val)
  • {{ $key }} {{ $item[$key] }}
  • @endforeach @endforeach
@endif {{-- 検索結果表示 CurryKitano end --}}
@endsection @extends('layouts.footer')