@extends('layouts.app') @push('page-styles') @endpush @section('page-content')
{{ __('Previous Month Employees') }} {{ $prevMonthTotalEmployees }}
{{ __('Previous Month') }} {{ LocaleSettings('currency_symbol').' '.$prevMonthExpenses }}
{{ __('Previous Month') }} {{ LocaleSettings('currency_symbol').' '.$prevMonthEstimates }}
{{ __('Previous Month') }} {{ LocaleSettings('currency_symbol').' '.$thisMonthInvoices }}
{{ __('Declined Invoices') }} {{ $invoices->where('status', '4')->count() }} / {{ $invoices->count() }}
{{ __('Partially Paid Invoices') }} {{ $invoices->where('status', '3')->count() }} / {{ $invoices->count() }}
{{ __('Paid Invoices') }} {{ $invoices->where('status', '2')->count() }} / {{ $invoices->count() }}
{{ __('Sent Invoices') }} {{ $invoices->where('status', '1')->count() }} / {{ $invoices->count() }}
{{ __('Open Tickets') }} {{ $tickets->where('status', \App\Enums\TicketStatus::NEW)->count() }} / {{ $tickets->count() }}
{{ __('Closed Tickets') }} {{ $tickets->where('status', \App\Enums\TicketStatus::CLOSED)->count() }} / {{ $tickets->count() }}
{{ __('Invoice ID') }} | {{ __('Client') }} | {{ __('Due Date') }} | {{ __('Total') }} | {{ __('Status') }} |
---|---|---|---|---|
{{ $invoice->inv_id }} |
{{ $invoice->client->user->fullname ?? '' }} |
{{ format_date($invoice->expiryDate) ?? '' }} | {{ LocaleSettings('currency_symbol') }} {{ $invoice->grand_total }} | {{ $invoice->statusName['name'] ?? '' }} |
{{ __('Name') }} | {{ __('Email') }} | {{ __('Status') }} | @can(['edit-client','delete-client']){{ __('Action') }} | @endcan
---|---|---|---|
{!! \Spatie\Menu\Laravel\Html::userAvatar($client->fullname, $img, $link) !!} | {{ $client->email }} | {{ $client->status->name ?? '' }} | @can(['edit-client','delete-client'])@endcan |
{{ __('Project Name') }} | {{ __('Date') }} | {{ __('Priority') }} | @can(['edit-project', 'delete-project']){{ __('Action') }} | @endcan
---|---|---|---|
@can('show-project')
{{ $project->name }}@else{{ $project->name }}@endcan {{ $project->tasks->count() ?? 0 }} {{ __('Opened Tasks') }} {{ $project->tasks->count() ?? 0 }} {{ __('Tasks Completed') }} |
{{ format_date($project->startDate) }} - {{ format_date($project->endDate) }} | {{ $project->priority }} | @can(['edit-project','delete-project'])@endcan |