@if($invoice->user->billingaddress) @if($invoice->user->billingaddress->name || $invoice->user->billingaddress->address_street_1 || $invoice->user->billingaddress->address_street_2 || $invoice->user->billingaddress->country || $invoice->user->billingaddress->state || $invoice->user->billingaddress->city || $invoice->user->billingaddress->zip || $invoice->user->billingaddress->phone)

Bill To,

@endif @if($invoice->user->billingaddress->name)

{{$invoice->user->billingaddress->name}}

@endif

@if($invoice->user->billingaddress->address_street_1) {{$invoice->user->billingaddress->address_street_1}}
@endif @if($invoice->user->billingaddress->address_street_2) {{$invoice->user->billingaddress->address_street_2}}
@endif @if($invoice->user->billingaddress->city && $invoice->user->billingaddress->city->name) {{$invoice->user->billingaddress->city->name}}, @endif @if($invoice->user->billingaddress->state && $invoice->user->billingaddress->state->name) {{$invoice->user->billingaddress->state->name}}. @endif @if($invoice->user->billingaddress->zip) {{$invoice->user->billingaddress->zip}}
@endif @if($invoice->user->billingaddress->country && $invoice->user->billingaddress->country->name) {{$invoice->user->billingaddress->country->name}}
@endif @if($invoice->user->billingaddress->phone)

Phone :{{$invoice->user->billingaddress->phone}}

@endif

@endif