@if($estimate->user->billingaddress)
Bill To,
@if($estimate->user->billingaddress->name){{$estimate->user->billingaddress->name}}
@endif
@if($estimate->user->billingaddress->address_street_1)
{!! nl2br(htmlspecialchars($estimate->user->billingaddress->address_street_1)) !!}
@endif
@if($estimate->user->billingaddress->address_street_2)
{!! nl2br(htmlspecialchars($estimate->user->billingaddress->address_street_2)) !!}
@endif
@if($estimate->user->billingaddress->city)
{{$estimate->user->billingaddress->city}},
@endif
@if($estimate->user->billingaddress->state)
{{$estimate->user->billingaddress->state}}.
@endif
@if($estimate->user->billingaddress->zip)
{{$estimate->user->billingaddress->zip}}
@endif
@if($estimate->user->billingaddress->country && $estimate->user->billingaddress->country->name)
{{$estimate->user->billingaddress->country->name}}
@endif
@if($estimate->user->billingaddress->phone)
Phone :{{$estimate->user->billingaddress->phone}}
@endif @endif