@extends('painel.layout.menu')
@section('css')
@endsection
@section('content')
@foreach ($pedido->items() as $item)
| 1 |
{{ strtoupper($item->categoria) }}
@foreach ($item->saboresDesc() as $sabor)
{{ '-1/' . count($item->saboresDesc()) . ' ' . $sabor }}
@endforeach
|
{{--
{{ strtoupper($item->categoria . '-' . $item->sabores . '(' . $item->borda . ')' . ' (' . $item->adicionais . ')') }}
| --}}
{{ number_format($item->valor, 2, ',', '.') }} |
@endforeach
@endsection