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

Repasse Médico


@foreach ($reports as $item) @endforeach
Rep. Med. Cirurgião Paciente Ficha Data de vencimento Data de Criação ASC Data de ASC Form de Pagamento Nº Fiscal NFE data da cirurgia Valor Pago Parcela
{{ $item->professional->name ?? '' }} {{ $item->patient->patient->name ?? '' }} {{ $item->launch->cod_ind ?? '' }} {{ $item->due_date ?? '' }} {{ $item->surgery->surgery->date ?? '' }} {{ $item->surgery->surgery->start_time ?? '' }} {{ $item->payment_form->name ?? '' }} {{ $item->launch->fiscal_number ?? '' }} @if ($item->launch->nfe_date != null) {{ date('Y-m-d', strtotime($item->launch->nfe_date)) }} @endif {{ date('Y-m-d', strtotime($item->surgery->surgery->start_time ?? '')) }} {{ $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