- Implemented dashboard view with vehicle stats, active services, recent activity, and upcoming appointments. - Created estimates view with filtering options and a list of service estimates. - Developed invoices view to manage service invoices and payment history with filtering. - Added vehicles view to display registered vehicles and their details. - Built work orders view to track the progress of vehicle services with filtering and detailed information.
9 lines
618 B
PHP
9 lines
618 B
PHP
<div class="flex aspect-square size-8 items-center justify-center rounded-md">
|
|
<img src="{{ app(\App\Settings\GeneralSettings::class)->shop_logo ? asset(app(\App\Settings\GeneralSettings::class)->shop_logo) : asset('images/logo-safe.png') }}" alt="{{ app(\App\Settings\GeneralSettings::class)->shop_name ?? 'SafeTrack Systems' }} Logo" class="w-full h-full object-contain rounded-md">
|
|
</div>
|
|
<div class="ms-1 grid flex-1 text-start text-sm">
|
|
<span class="mb-0.5 truncate leading-tight font-semibold">
|
|
{{ app(\App\Settings\GeneralSettings::class)->shop_name ?? 'SafeTrack Systems' }}
|
|
</span>
|
|
</div>
|