@if($estimate->user->billingaddress) @if($estimate->user->billingaddress->name || $estimate->user->billingaddress->address_street_1 || $estimate->user->billingaddress->address_street_2 || $estimate->user->billingaddress->country || $estimate->user->billingaddress->state || $estimate->user->billingaddress->city || $estimate->user->billingaddress->zip || $estimate->user->billingaddress->phone)
Bill To,
@endif @if($estimate->user->billingaddress->name){{$estimate->user->billingaddress->name}}
@endif
@if($estimate->user->billingaddress->address_street_1)
{{$estimate->user->billingaddress->address_street_1}}
@endif
@if($estimate->user->billingaddress->address_street_2)
{{$estimate->user->billingaddress->address_street_2}}
@endif
@if($estimate->user->billingaddress->city && $estimate->user->billingaddress->city)
{{$estimate->user->billingaddress->city}},
@endif
@if($estimate->user->billingaddress->state && $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