@extends('layouts.app') @section('title') {{ __('Invoice') }} @endsection @section('css') @endsection @section('breadcrumb')
|
||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ __('Due Date') }} : {{ date('d/m/Y', strtotime($group['created_at'])) }}
--}}| {{ __('Test Name') }} | {{ __('Price') }} | |
|---|---|---|
| @if (isset($test['test'])) {{ $test['test']['name'] }} @endif | {{ formated_price($test['price']) }} | |
| @if (isset($culture['culture'])) {{ $culture['culture']['name'] }} @endif | {{ formated_price($culture['price']) }} | |
@if (isset($package['package']))
{{ $package['package']['name'] }}
@endif
|
{{ formated_price($package['price']) }} | |
| {{ __('Subtotal') }} | {{ formated_price($group['subtotal']) }} | |
| {{ __('Discount') }} | {{ formated_price($group['discount']) }} | |
| {{ __('Total') }} | {{ formated_price($group['total']) }} | |
|
{{ __('Paid') }}
@foreach ($group['payments'] as $payment) {{ formated_price($payment['amount']) }} {{ __('On') }} {{ $payment['date'] }} {{ __('By') }} {{ $payment['payment_method']['name'] }} @endforeach |
@if (count($group['payments'])) {{ formated_price($group['paid']) }} @else {{ formated_price(0) }} @endif | |
| {{ __('Due') }} | {{ formated_price($group['due']) }} | |