@extends('layouts.main',['title'=>'Application Summery']) @section('content')
@php $member = \App\Models\CbMember::where('cbmEmail',auth()->guard('member')->user()->email)->first(); @endphp

Application Summary

Personal Information

First Name Last Name Phone Number Email Address Address
{{ auth()->guard('member')->user()->first_name }} {{ auth()->guard('member')->user()->last_name }} {{ $member->cbmPhone }} {{ $member->cbmEmail }} @php $address = null; if(isset($member->address) && !empty($member->address)) { $address = $member->address->cbaAddressLine1 . ', ' . $member->address->cbaAddressLine2 . ', ' . $member->address->cbaCity . ', ' . $member->address->cbaState . ', ' . $member->address->cbaCountry; } echo $address; @endphp
Product Information
@foreach($member->products as $product) @endforeach
Product Name Short Description Product URL Product Category Brand Allocation Price
@php $prod_img = $product->images->first(); $prod_img = ($prod_img) ? $prod_img->public_path : asset('images/handshake.png'); @endphp
{{ $product->cbpName }}
{{ $product->cbpShortDescription }} {{ $product->cbpUrl }} {{ $product->type->cbptName }} {{ $product->user->usLogin }} ${{ $product->cbpPrice }}

Powered By Axencis

@endsection