@extends('layouts.main-layout') @section('title') {{ config('app.name') }} - Profiles @endsection @section('content')

Profiles

@foreach($profiles as $profile) @endforeach
# First Last Email Phone number Is client active Client profile expires Action
@if(session()->get('client_id') == $profile->client_id) {{ $profile->client_id }} - Me @else {{ $profile->client_id }} - Client profile @endif {{ $profile->client_firstName }} {{ $profile->client_lastName }} {{ $profile->client_email }} {{ $profile->client_phoneNumber }} @if($profile->client_isActive) Yes @else No @endif @if($profile->client_expires_at != null) {{ $profile->client_expires_at }} @endif EDIT
@endsection