@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

{{ $client->fullname }}

@if (!empty($client->clientDetail) && !empty($client->clientDetail->designation))
{{ $client->clientDetail->designation->name }}
@endif
@endforeach @endif
@endsection