@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Relatórios') {{-- styles --}} @section('page-styles') @endsection @section('content')
@csrf

Repasse Médico


@foreach ($reports as $launch) @foreach ($launch->launchparcels as $item) @endforeach @endforeach
Rep. Med. Cirurgião Paciente Ficha Data de pagamento Data de Criação ASC Data de ASC forma de pagamento Nº Fiscal NFE data da cirurgia Valor Pago Parcela
@if ($item->confirmation_date != null && $item->confirm_transfer == 0) @endif @if ($item->confirmation_date != null && $item->confirm_transfer == 1) @endif @if ($item->confirmation_date == null) @endif {{ $launch->professional->name ?? '' }} {{ $launch->patient->name ?? '' }} {{ $launch->cod_ind ?? '' }} {{ $item->due_date ?? '' }} {{ $item->surgery->surgery->date ?? '' }} {{ $item->surgery->surgery->start_time ?? '' }} {{ $item->payment_form->name ?? '' }} {{ $launch->fiscal_number ?? '' }} {{ date('Y-m-d', strtotime($launch->nfe_date)) ?? '' }} @if (isset($launch->surgery->start_time)) {{ date('Y-m-d', strtotime($launch->surgery->start_time)) ?? '' }} @endif {{ $item->value_paid ?? '' }} @if (isset($item->current_installment)) {{ $item->current_installment + 1 . ' / ' . $item->total_installment }} @else {{ '' }} @endif
Rep. Med. Cirurgião Paciente Ficha Data de vencimento Data de Criação ASC Data de ASC forma de pagamento Nº Fiscal NFE data da cirurgia Valor Pago Parcela
@endsection {{-- page scripts --}} @section('page-scripts') @endsection