@extends('layouts.main') @section('container')

All Menu's

@foreach ($foods as $food)
{{ $food->name }}

IDR {{ number_format($food->price, 0, ',', '.') }}

@endforeach
@foreach ($drinks as $drink)
{{ $drink->name }}

IDR {{ number_format($drink->price, 0, ',', '.') }}

@endforeach
@foreach ($dessert as $item)
{{ $item->name }}

IDR {{ number_format($item->price, 0, ',', '.') }}

@endforeach
@endsection