@extends('admin.layouts.master') @section('title', $title) @section('content')
{{ __('dashboard.hello') }}, {{ $row->name }}
{{ __('dashboard.invoice_date') }} : {{ date('d-M-y', strtotime($row->invoice_date)) }}
@if(isset($row->due_date)){{ __('dashboard.due_date') }} : {{ date('d-M-y', strtotime($row->due_date)) }}
@endif{{ __('dashboard.invoice_type') }} : @if( $row->invoice_type == 0 ) {{ __('dashboard.estimate') }} @elseif( $row->invoice_type == 1 ) {{ __('dashboard.advance') }} @elseif( $row->invoice_type == 2 ) {{ __('dashboard.interval') }} @elseif( $row->invoice_type == 3 ) {{ __('dashboard.milestone') }} @elseif( $row->invoice_type == 4 ) {{ __('dashboard.final') }} @elseif( $row->invoice_type == 5 ) {{ __('dashboard.full') }} @endif
{{ __('dashboard.invoice_status') }} : @if( $row->status == 1 ) {{ __('dashboard.pending') }} @elseif( $row->status == 2 ) {{ __('dashboard.paid') }} @elseif( $row->status == 0 ) {{ __('dashboard.canceled') }} @endif
@if(isset($row->quote_id)){{ __('dashboard.quote_no') }} : #{{ $row->quote_id }}
@endif{{ __('dashboard.note') }}:
{!! $row->message !!}{{ __('dashboard.service_bill') }}: {{ $row->service_charge }} {{ __('common.currency') }}
@endif @if(isset($row->tax)){{ __('dashboard.tax_charge') }}: {{ $row->tax }} {{ __('common.currency') }}
@endif @if(isset($row->shipping)){{ __('dashboard.shipping_charge') }}: {{ $row->shipping }} {{ __('common.currency') }}
@endif{{ __('dashboard.total') }}: {{ $row->total_amount }} {{ __('common.currency') }}
@if(isset($row->discount_amount)){{ __('dashboard.discount') }}: {{ $row->discount_amount }} {{ __('common.currency') }}
@endif