@extends('layouts.dashboard') @section('title', 'All Clients | ' . Options::get('title') ) @section('content')

Clients

@if( count($clients) ) @foreach($clients as $client) @endforeach @else @endif
Name Email Client Image Registered at Action
{{ $client->fullName() }} {{ $client->email }} {{ $client->created_at->diffForHumans() }}
No clients to show.
{{ $clients->render() }}
@stop