@extends('admin.layouts.app') @section('title', 'Agent Reviews') @section('breadcrumb')
  • Agents
  • Agent Reviews
  • @endsection @section('heading', 'Agent Reviews') @section('subheading', 'Moderate and manage customer reviews for agents.') @section('actions') All Agents @endsection @section('content')

    Agent reviews will appear here once you add a reviews system.

    You can manage agents from the list below.

    @forelse($agents as $agent) {{ substr($agent->name, 0, 2) }} {{ $agent->name }} @empty

    No agents yet. Add one.

    @endforelse
    @if ($agents->hasPages())
    {{ $agents->links() }}
    @endif @endsection