@extends('layouts.table') @section('title', 'รายงานข้อมูลลูกค้า : ' . $d->first_name) @section('thead') {{ 'ชื่อสินค้า' }} {{ 'จำนวน' }} {{ 'ยอดขาย' }} @endsection @section('tbody') @foreach($list as $d) {{ $d->product_name }} {{ $d->qty }} {{ $d->total_inc_vat }} @endforeach @if(sizeof($list) == 0) ไม่พบผลลัพธ์ในการค้นหา @endif @endsection