@extends('layouts.vertical') @section('css') @endsection @php $is_child = ""; $is_child_exist = false; if(app('request')->input('child')){ $is_child = app('request')->input('child'); } @endphp @section('breadcrumb')

Send manual invoices

Use this section to send manual invoices for parents. Manual invoices are used for once off payments.

@endsection @section('content')
@csrf
Children of {{isset($room) && !empty($room) ? $room->name : ""}}

Tap to select the children.

@if(isset($init->children) && !empty($init->children)) @foreach($init->children as $child)
@endforeach @php $is_child_exist = true; @endphp @else

No children found

@endif
Invoice details
@if(isset($init->payeeProfile->tax) && $init->payeeProfile->tax != "" && $init->payeeProfile->tax > 0)
Total amount with {{$init->payeeProfile->tax}}% tax: {{config('constant.currency')[$init->payeeProfile->currency]['symbol']}}0.0
@endif
@endsection @section('script-bottom') @endsection