@extends('Layout::empty') @section('head')
@if( !empty($logo = setting_item('logo_invoice_id') ?? setting_item('logo_id') )) {{setting_item( @endif
{!! setting_item_with_lang("invoice_company_info") !!}

{{__("INVOICE")}}

{{__('Invoice #: :number',['number'=>$booking->id])}}
{{__('Created: :date',['date'=>display_date($booking->created_at)])}}
{!! nl2br(setting_item('invoice_company')) !!}
{{__("Amount due:")}}
{{format_money($booking->total - $booking->paid)}}

{{__('Billing to:')}}
{{$booking->first_name.' '.$booking->last_name}}

{{$booking->email}}
{{$booking->phone}}
{{$booking->address}}
{{implode(', ',[$booking->city,$booking->state,$booking->zip_code,get_country_name($booking->country)])}}

@if(!empty($service->email_new_booking_file))
@include($service->email_new_booking_file ?? '')
@endif
@endsection @section('footer') @endsection