@extends('layouts.app') @section('content') {{-- ── Segment filter + testimonials ───────────────────────────────────── --}}
{{-- Filter pills --}}
@foreach(['all' => 'All', 'Restaurant Chain' => 'Restaurant Chains', 'Single Restaurant' => 'Cafés & Restaurants', 'Cloud Kitchen' => 'Cloud Kitchens', 'Retail Chain' => 'Retail Chains'] as $key => $label) @endforeach
@foreach(config('phylopos.testimonials') as $t)
@for($i = 0; $i < 5; $i++) @endfor
"{{ $t['quote'] }}"
{{ strtoupper(substr($t['name'], 0, 1)) }}
{{ $t['name'] }}
{{ $t['title'] }}, {{ $t['company'] }}
{{ $t['segment'] }}
@endforeach
{{-- ── Results section ──────────────────────────────────────────────────── --}}

What operators report after six months on PhyloPOS.

@foreach([ ['30%', 'Faster billing at peak hours'], ['25%', 'Reduction in kitchen errors'], ['40%', 'Less time on EOD reconciliation'], ['2 hrs', 'Saved per day in manual management'], ] as [$value, $label])
{{ $value }}
{{ $label }}
@endforeach

Based on customer feedback. Results vary by business type and configuration.

@endsection