@extends('layouts.app') @section('title', 'Customer Pages') @section('page-title', 'Customer Pages') @section('breadcrumb', 'Platform Admin / Customer Pages') @section('content')

Manage testimonials, success stories, and wall-of-love content for /customers/{slug} pages. Saving testimonials or success stories also updates the homepage sections.

@foreach($pages as $page)

{{ $page['label'] }}

{{ $page['description'] }}

{{ $page['is_customized'] ? 'Custom' : 'Default' }}
{{ $page['item_count'] }} items @if($page['updated_at']) Updated {{ $page['updated_at']->diffForHumans() }} @else Using defaults @endif
@endforeach
@endsection