@extends('layouts.app') @section('title', 'Dashboard - Cost Furniture') @section('page-title', 'Dashboard') @section('content')
{{ $total_invoices }}
Total Invoice
{{ $total_panels }}
Product Panel
{{ $total_solids }}
Product Solid
{{ $total_veneers }}
Product Veneer
Invoice Terbaru
@if($recent_invoices->count() > 0)
@foreach($recent_invoices as $invoice) @endforeach
Product Name Product Type Product Code Tanggal Grand Total Status
{{ $invoice->product_name }} {{ $invoice->product_type }} {{ $invoice->product_code }} {{ $invoice->invoice_date->format('d M Y') }} {{ \App\Helpers\CasegoodHelper::formatRupiah($invoice->grand_total) }} @if($invoice->is_fixed) Fixed @else Draft @endif
@else

Belum ada invoice dibuat

Buat Invoice Pertama
@endif
@endsection