@extends('layouts.app') @section('title', 'Dashboard - Lektrik') @section('content')

Pending Quotes

{{ $pendingQuotes }}

Paid Invoices

{{ $paidQuotes }}

Total Clients

{{ $totalClients }}

Quick Actions

Recent Jobs

View All
@if($recentQuotes->count() > 0)
@foreach($recentQuotes as $quote) @endforeach
Job # Date Status
{{ $quote->quote_number }}
{{ $quote->client->name }}
{{ $quote->created_at->format('d/m/Y') }}
@if($quote->status === 'paid') Paid (Invoice) @else Pending (Quote) @endif
@else

No quotes yet

Create your first quote to get started!

Create Quote
@endif
@endsection