@extends('layouts.dashboard') @section('content')
Referrals Home
We have some referrals according to last survey.
Patient Information
Client Id Name Email DOB Gender Zip Code City Address
{{$patient->pid}} {{$patient->fname}} {{$patient->lname}} {{$patient->email}} {{$patient->DOB}} {{$patient->sex}} {{$patient->postal_code}} {{$patient->city}} {{$patient->street}}
Agencies
@foreach($survey_data as $srvdata) @if($srvdata->search->count()>0) @foreach($srvdata->search as $datas) @endforeach @endif @endforeach
Agency Name Referring Contact Referring Email Location Description Address
{{$srvdata->service_name}}
{{$datas->name}} {{$datas->ref_phone}} {{$datas->email}} {{$datas->loc_name}} {{$datas->description}} @if($datas->loc_address){{$datas->loc_address}}, @endif @if($datas->loc_city){{$datas->loc_city}}, @endif @if($datas->loc_state){{$datas->loc_state}}, @endif @if($datas->loc_zipCode){{$datas->loc_zipCode}}@endif
Close
@endsection @section('footer_scripts') @endsection