@extends('layout_slip')
@section('content')
{{--
--}}
{{ $company->name }}
{{ $company->addr }}
@if($company->taxid != "")
{{ __('เลขประจำตัวผู้เสียภาษี') }} : {{ $company->taxid }}
@endif
{{ __('หมายเลขโทรศัพท์') }} : {{ $company->phone }}
{{ __('วันที่') }} : {{ date('d-m-Y') }} {{ __('เวลา') }} : {{ date('H:i') }} น.
ยอดขายประจำวันที่
{{ $start_date }} ถึง {{ $end_date }}
{{-- {{ __('No.') }} | --}}
{{ __('ชื่ออาหาร') }} |
{{ __('จำนวน') }} |
{{ __('ราคารวม') }} |
@php
$total = 0;
$total_drink = 0;
$total_food = 0;
$total_bar = 0;
@endphp
@foreach ($category as $cate)
@php $num = 0; @endphp
@foreach ($bill as $key => $detail)
@if(isset($detail->item->category_id))
@if($detail->item->category_id == $cate->id)
@if($num == 0)
{{ $cate->cate_name }} |
@endif
{{-- {{ $num+1 }}. | --}}
{{ $detail->item->item_name }} |
{{ $detail->qty }} |
{{ number_format(($detail->qty * ( $detail->total / $detail->qty )),2) }} |
@if($cate->type_id == "1")
@php
$total_drink = $total_drink + ($detail->qty * ( $detail->total / $detail->qty ));
@endphp
@elseif($cate->type_id == "2")
@php
$total_food = $total_food + ($detail->qty * ( $detail->total / $detail->qty ));
@endphp
@elseif($cate->type_id == "3")
@php
$total_bar = $total_bar + ($detail->qty * ( $detail->total / $detail->qty ));
@endphp
@endif
@php
$total = $total + ($detail->qty * ( $detail->total / $detail->qty ));
$num++;
@endphp
@endif
@endif
@endforeach
@endforeach
@php $num = 0; @endphp
@foreach ($bill as $key => $detail)
@if(empty($detail->item->category_id))
@if($num == 0)
{{--
ไม่มีหมวด |
--}}
@endif
{{-- {{ $num+1 }}. | --}}
{{ $detail->item_id }} ( ไม่มีชื่ออาหาร) |
{{ $detail->qty }} |
{{ number_format(($detail->qty * ( $detail->total / $detail->qty )),2) }} |
@if($cate->type_id == "1")
@php
$total_drink = $total_drink + ($detail->qty * ( $detail->total / $detail->qty ));
@endphp
@elseif($cate->type_id == "2")
@php
$total_food = $total_food + ($detail->qty * ( $detail->total / $detail->qty ));
@endphp
@elseif($cate->type_id == "3")
@php
$total_bar = $total_bar + ($detail->qty * ( $detail->total / $detail->qty ));
@endphp
@endif
@php
$total = $total + ($detail->qty * ( $detail->total / $detail->qty ));
$num++;
@endphp
@endif
@endforeach
ราคารวม : |
{{ number_format($total,2) }} |
ส่วนลด : |
{{ number_format($bill_dis[0]->discount,2) }} |
ยอดขายสุทธิ : |
{{ number_format(($total - $bill_dis[0]->discount),2) }} |
เงินสด : |
{{ number_format($bill_cash[0]->cash,2) }} |
เงินโอน : |
{{ number_format($bill_transfer[0]->transfer,2) }} |
บัตรเครดิต : |
{{ number_format(($bill_credit[0]->credit),2) }} |
เงินลิ้นชัก : |
{{ number_format(($drawer[0]->cash),2) }} |
เงินทอน : |
{{ number_format($bill_change[0]->cash,2) }} |
ยอดเงินสดคงเหลือสุทธิ : |
{{ number_format(($drawer[0]->cash + $bill_cash[0]->cash) - $bill_change[0]->cash,2) }} |
ยอดเงินรวมสุทธิ : |
{{ number_format(($drawer[0]->cash + $bill_cash[0]->cash + $bill_transfer[0]->transfer + $bill_credit[0]->credit) - $bill_change[0]->cash,2) }} |
รวมยอดเงิน เครื่องดื่ม : |
{{ number_format($total_drink,2) }} |
รวมยอดเงิน อาหาร : |
{{ number_format($total_food,2) }} |
รวมยอดเงิน บาร์ : |
{{ number_format($total_bar,2) }} |
@endsection