@extends('layouts.main',['title'=>'Application Summery']) @section('content')

Application Summary

Personal Information

First Name Last Name Phone Number Email Address Address
{{ $first_name }} {{ $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 }} Band ${{ $product->cbpPrice }}

Powered By Axencis

@endsection