@extends('layouts.admin') @section('page-title') {{ __('Clients') }} @endsection @section('links') @if (\Auth::guard('client')->check()) @else @endif @endsection @php $logo = \App\Models\Utility::get_file('users-avatar/'); @endphp @section('action-button') @auth('web') @if (isset($currentWorkspace) && $currentWorkspace->creater->id == Auth::id()) @endif @endauth @endsection @section('content') @if ($currentWorkspace)
@foreach ($clients as $client)
user-imageavatar) src="{{ asset($logo . $client->avatar) }}" @else avatar="{{ $client->name }}" @endif>

{{ $client->name }}

{{ $client->email }}
@endforeach
@auth('web') @if (isset($currentWorkspace) && $currentWorkspace->creater->id == Auth::id())
{{__('New Client')}}

{{__('Click here to add New Client')}}

@endif @endauth
@else

404

{{ __('Page Not Found') }}
@endif
@endsection @push('scripts') @endpush