@extends('layouts.front-layout') @section('title', 'Our Teams') @section('content')

{{ $data->banner_heading ?? '' }}

MEET OUR TEAM OF EXPERTS!

Licensed Professional Counselor (LPC)

@if(isset($our_team)) @foreach($our_team->where('category','Licensed Professional Counselor (LPC)') as $val)
{{$val->name}}

{{ $val->title }}

{{ $val->name }}

{!! Illuminate\Support\Str::limit(strip_tags($val->detail), $limit = 500, $end = '...') !!}

Read More
@endforeach @else

No our team available.

@endif

Licensed Professional Counselor-Candidate (LPC-C)

@if(isset($our_team)) @foreach($our_team->where('category','Licensed Professional Counselor-Candidate (LPC-C)') as $val)
{{$val->name}}

{{ $val->title }}

{{ $val->name }}

{!! Illuminate\Support\Str::limit(strip_tags($val->detail), $limit = 500, $end = '...') !!}

Read More
@endforeach @else

No our team available.

@endif

Clinical Interns

@if(isset($our_team)) @foreach($our_team->where('category','Clinical Interns') as $val)
{{$val->name}}

{{ $val->title }}

{{ $val->name }}

{!! Illuminate\Support\Str::limit(strip_tags($val->detail), $limit = 500, $end = '...') !!}

Read More
@endforeach @else

No our team available.

@endif

Admin Support

@if(isset($our_team)) @foreach($our_team->where('category','Admin Support') as $val)
{{$val->name}}

{{ $val->title }}

{{ $val->name }}

{!! Illuminate\Support\Str::limit(strip_tags($val->detail), $limit = 500, $end = '...') !!}

Read More
@endforeach @else

No our team available.

@endif
@include('front.include.contact') @endsection