@extends('master') @section('page-css') @endsection @section('page-content')
You are here:

Welcome back {{ Auth::user()->name }}


{{ $dashboard_data['total_customers'] }}

Customers

{{ $dashboard_data['total_invoices'] }}

Invoices

{{ $dashboard_data['total_companies'] }}

Companies

{{ $dashboard_data['total_receipts'] }}

Receipts

Invoices

{{-- --}} @if (session()->has('success'))
{{ session()->get('success') }}
@endif
@foreach ($invoices as $i) @endforeach
Invoice Number Customer Name Invoice Description Date Created Expiry Date Action
{{ $i->slug }} {{ $i->customer->customer_name }} {{ $i->invoice_description }} {{ $i->created_at }} {{ $i->expiry_date }}
{{-- --}} {{-- --}}
@endsection @section('page-scripts') @endsection