@extends('website.layout.app') @section('title', 'About Us – Invinaa Associates') @section('meta_description', 'We offer a wide range of tax consultant services like Tax Compliance, Goods & Service Tax, International Taxation, Company and LLP Compliances in Delhi, India.') @section('content')

About Us

About Image About Image
About the Company

{{ $about->title ?? '' }}

{{ $about->sub_title ?? '' }}

@php $features = []; if (!empty($about->description)) { $decoded = json_decode($about->description, true); if (is_array($decoded)) { $features = $decoded; } } @endphp
@foreach (array_slice($features, 0, 2) as $item)
{{ $item }}
@endforeach

{{ $setting->no_of_year ?? 10 }}

Years Experience

@foreach (array_slice($features, 2) as $item)

{{ $item }}

@endforeach
Have any questions? Call: +91 {{ $setting->phone ?? '' }}
@php // Safe defaults $wcTitle = $whyChooseUs->title ?? ''; $wcDesc = $whyChooseUs->short_description ?? ''; $features = []; if (!empty($whyChooseUs->description)) { $decoded = json_decode($whyChooseUs->description, true); if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) { $features = array_slice($decoded, 0, 4); } } $icons = [ 'fas fa-user-tie', 'fas fa-shield-alt', 'fas fa-headset', 'fas fa-check-circle', ]; @endphp
WHY CHOOSE US

{{ $wcTitle ?: 'Experience is the key to excellence.' }}

{{ $wcDesc ?: 'We focus on expertise, transparency, and long-term partnerships to help your business grow with confidence.' }}

@if (!empty($features)) @foreach ($features as $key => $item)
{{ $item['heading'] ?? 'Quality Service' }}

{{ $item['details'] ?? 'Details coming soon.' }}

@endforeach @else

No features available at the moment.

@endif
Latest Blogs

Insights on Tax & Finance

Stay informed with expert articles on taxation, compliance, financial planning, GST updates, and advisory guidance from our certified tax professionals.

@foreach ($blogs as $key => $blog)
{{ $blog->title ?? '' }}

{{ $blog->title ?? '' }}

{{ $blog->short_description ?? '' }}

Read Article
@endforeach
@include('website.faqs') @endsection