@extends('layouts.master') @section('title') Dashboard @endsection @section('css') @endsection @section('page-title') Dashboard @endsection @section('body') @endsection @section('content')

Dashboard

@foreach ($quotationStats as $q) @endforeach
Module Status Count
Inquiries All {{ $inquiryStats->total ?? 0 }}
Pending {{ $inquiryStats->pending ?? 0 }}
Accepted {{ $inquiryStats->accepted ?? 0 }}
Rejected {{ $inquiryStats->rejected ?? 0 }}
Complaints All {{ $complainStats->total ?? 0 }}
Pending {{ $complainStats->pending ?? 0 }}
Completed {{ $complainStats->completed ?? 0 }}
PO All {{ $poCount ?? 0 }}
GRN All {{ $grnCount ?? 0 }}
Material Request {{ $materialRequestCount ?? 0 }}
Issue {{ $materialIssueCount ?? 0 }}
Return {{ $materialReturnCount ?? 0 }}
AC Request {{ $acRequestCount ?? 0 }}
Issue {{ $acIssueCount ?? 0 }}
Return {{ $acReturnCount ?? 0 }}
Quotations All {{ $quotationStats->sum('total') ?? 0 }}
{{ $q->quotation_master_name }} {{ $q->total ?? 0 }}
@endsection @section('scripts') @endsection