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

รายงานผลกำไร

@stop @section('content')
@if(isset($sells))
@foreach($sells as $sell) @endforeach
รหัสสินค้า ชื่อสินค้า จำนวนที่ขาย มูลค่าสุทธิ มูลค่าการขาย มูลค่ากำไร
{{$sell->barcode}} {{$sell->name}} {{number_format($sell->s_amount,0)}} {{number_format($sell->s_cost,0)}} {{number_format($sell->s_price,0)}} {{number_format($sell->s_price - $sell->s_cost,0)}}
  รวมหน้านี้      
รวมทั้งหมด      
@endif
@stop @section('style') @stop @section('script') @stop