{{-- layout extend --}} @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','App Invoice List') {{-- vendor styles --}} @section('vendor-style') @endsection {{-- page styles --}} @section('page-style') @endsection {{-- page content --}} @section('content')
{{--
picture_as_pdf Export to PDF
--}}
Buat Baru
Filter Invoice keyboard_arrow_down
@foreach ($invoices as $invoice) @endforeach
Date Nama Pembukuan Pemasukan Pengeluaran Action
{{ $invoice->getDate() }} {{ $invoice->name }} ⬆ {{ $invoice->getPemasukan() }} ⬇ {{ $invoice->getPengeluaran() }}
@if($invoice->status == 0) Atur @else Cetak dan Print @endif
@endsection {{-- vendor scripts --}} @section('vendor-script') @endsection {{-- page scripts --}} @section('page-script') @if(session('success')) @endif @endsection