@extends('layouts.main-layout') @section('title', 'Sow App - Profiles') @section('content')

Profiles

@foreach($profiles as $profile) @endforeach
# First Last Email Phone number Is client active 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 EDIT
@endsection