@forelse($testimonials as $t)
@for($i = 1; $i <= 5; $i++)
@endfor
"{{ $t->review }}"
{{ strtoupper(substr($t->name, 0, 1)) }}
{{ $t->name }}
@if($t->location)
{{ $t->location }}
@endif
{{ $t->source }}
@if($t->review_date) · {{ $t->review_date->format('M Y') }} @endif
@empty
@php
$sampleReviews = [
['name'=>'Paras Taneja','location'=>'Delhi','date'=>'March 2024','review'=>'I was at a very low phase in life. Auromon Chakrabarti\'s sessions — a beautiful blend of counselling, chakra healing and hypnotherapy — gradually shifted me from a state of hopelessness to a genuinely hopeful person. I am forever grateful.'],
['name'=>'Meera Sharma','location'=>'Gurugram','date'=>'Jan 2024','review'=>'Auromon Chakrabarti has a rare ability to hold space without judgment. Her work on my inner child healing was profoundly transformative. I feel lighter, more compassionate with myself, and more joyful than I have in years.'],
['name'=>'Rohan Malhotra','location'=>'Mumbai','date'=>'Dec 2023','review'=>'I had severe anxiety and couldn\'t sleep for months. After just 4 sessions of hypnotherapy and NLP with Auromon Chakrabarti, I experienced a shift I can only describe as miraculous. Highly recommended.'],
['name'=>'Priya Kapoor','location'=>'Bengaluru (Online)','date'=>'Feb 2024','review'=>'I was sceptical about online healing sessions, but Auromon Chakrabarti\'s presence and expertise translate perfectly through the screen. The chakra balancing work was deeply relaxing and I noticed changes in my emotional patterns within days.'],
['name'=>'Ananya Verma','location'=>'Delhi','date'=>'Nov 2023','review'=>'Auromon Chakrabarti helped me heal a 20-year-old wound around my father through inner child work. I walked in carrying a weight I didn\'t even know I was carrying. I walked out free. That\'s the only way I can describe it.'],
['name'=>'Sanjay & Riya Mehta','location'=>'Delhi','date'=>'Oct 2023','review'=>'We attended pre-marital counselling with Auromon Chakrabarti before our wedding. It gave us tools, language and frameworks for communication that have genuinely strengthened our relationship. Wish more couples did this.'],
];
@endphp
@foreach($sampleReviews as $r)
★★★★★
"{{ $r['review'] }}"
{{ strtoupper(substr($r['name'], 0, 1)) }}
{{ $r['name'] }}
{{ $r['location'] }}
Google · {{ $r['date'] }}
@endforeach
@endforelse
@if($testimonials instanceof \Illuminate\Pagination\LengthAwarePaginator && $testimonials->hasPages())