@extends('layouts.app') @section('pagetitle') @stop @section('title')

รายงานการขายประจำวัน

@stop @section('content')
@if(isset($sells))
@foreach($sells as $sell) @endforeach
เลขที่ขาย วันเวลาที่ขาย ผู้ขาย มูลค่า
{{$sell->code}} {{date('d/m/Y H:i',strtotime($sell->created_at))}} {{$sell->name}} {{number_format($sell->netprice)}}
    รวมทั้งสิ้น {{number_format($total)}}
@endif
@stop @section('style') @stop @section('script') @stop