@extends(\Auth::user()->role != 10 ? 'layout' : 'layoutfrontdesk')
@section('title', 'Split Bill')
@section('css')
@endsection
@section('content')
@csrf
# |
Waktu |
No. Invoice |
Nama Pelanggan |
Total |
Action |
@php
$no=1;
@endphp
@if (!$invoices->isEmpty())
@foreach($invoices as $inv)
{{$no}} |
{{date('d F Y, h:i', strtotime($inv->created_at))}} |
{{$inv->no_invoice}} |
{{$inv->nama_pelanggan}} |
Rp {{ribuan($inv->total)}} |
Split Bill
|
@php
$no++;
@endphp
@endforeach
@else
Tidak Ada Data |
@endif
@endsection
@section('js')
@endsection