@extends('layouts.app')
@push('page-style')
@endpush
@section('page-content')
{{ __('Clients') }}
@if (!empty($clients))
@foreach ($clients as $client)
@php
$showRoute = route('clients.show', ['client' => \Crypt::encrypt($client->id)]);
@endphp
@endforeach
@endif
@endsection