@extends('portal.ninja2020.layout.app') @section('meta_title', ctrans('texts.view_invoice')) @push('head') @endpush @section('body') @if($invoice->isPayable() && !empty($client->getSetting('custom_message_unpaid_invoice'))) @component('portal.ninja2020.components.message') {!! CustomMessage::client($client) ->company($client->company) ->entity($invoice) ->message($client->getSetting('custom_message_unpaid_invoice')) !!} @endcomponent @endif @if(!$invoice->isPayable() && !empty($client->getSetting('custom_message_paid_invoice'))) @component('portal.ninja2020.components.message') {!! CustomMessage::client($client) ->company($client->company) ->entity($invoice) ->message($client->getSetting('custom_message_paid_invoice')) !!} @endcomponent @endif @if($invoice->isPayable())
@csrf

{{ ctrans('texts.unpaid') }}

{{ ctrans('texts.invoice_still_unpaid') }}

@endif
{{ ctrans('texts.page') }}: {{ strtolower(ctrans('texts.of')) }}
100%
@endsection @section('footer') @endsection