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