@php
$taxServices = [
[
'title' => 'Individual Taxation',
'description' => 'We provide personalized tax planning and filing services to maximize savings and ensure full compliance.',
'image' => 'generic-1.png',
'color' => 'quaternary',
'delay' => 0
],
[
'title' => 'Corporate Taxation',
'description' => 'We provide personalized tax planning and filing services to maximize savings and ensure full compliance.',
'image' => 'generic-2.png',
'color' => 'primary',
'delay' => 300
],
[
'title' => 'Estate Taxation',
'description' => 'We provide personalized tax planning and filing services to maximize savings and ensure full compliance.',
'image' => 'generic-3.png',
'color' => 'secondary',
'delay' => 600
]
];
@endphp
@foreach($taxServices as $service)
{{ $service['title'] }}
{{ $service['description'] }}
@php
$servicesUrl = Route::has('frontend.services.index') ? route('frontend.services.index') : '#';
@endphp
{{ __('Learn More') }}
@endforeach
@php
$counters = [
['value' => '95', 'label' => 'Client Satisfaction', 'delay' => 0],
['value' => '99', 'label' => 'On-Time Reporting', 'delay' => 200],
['value' => '87', 'label' => 'Referral Growth', 'delay' => 400]
];
@endphp
@foreach($counters as $counter)
{{ $counter['label'] }}
@endforeach