@if($invoice->user->billingaddress)
Bill To,
@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)
            {{$invoice->user->billingaddress->city}},
        @endif
        @if($invoice->user->billingaddress->state && $invoice->user->billingaddress->state)
            {{$invoice->user->billingaddress->state}}.
        @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