@extends('layouts.front') @section('content') {{-- --}}
@foreach($products as $p) @endforeach
    สินค้า ราคา จำนวน รวมทั้งหมด
× Placeholder {{ $p['name'] }} ฿ {{ number_format($p['line_price'], 2, '.', ',') }}
฿ {{ number_format($p['line_total'], 2, '.', ',') }}

ยอดรวมสินค้าทั้งหมด

มูลค่าสินค้า ฿ {{ number_format($total, 2, '.', ',') }}
VAT ฿ {{ number_format($vat, 2, '.', ',') }}
รวมทั้งหมด ฿ {{ number_format($total_vat, 2, '.', ',') }}
@endsection