@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Mostrando Lançamento') {{-- vendor styles --}} @section('vendor-styles') @endsection @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Ops! Ouve algum problema com o Upload.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ $parcel->launch_id }}
@if($parcel->launch->surgery) {{ $parcel->launch->surgery->id ?? '' }} @else @endif
{{ $parcel->current_installment + 1 ?? '' }}
@isset($parcel->confirmation_date) {{ date('d/m/Y', strtotime($parcel->confirmation_date)) }} @endisset
{{ $parcel->launch->user->name }}
@if ($parcel->launch->type_launch == 1) Entrada(Crédito) @else Saída(Débito) @endif
{{ $parcel->launch->account_plan->name ?? '' }}
{{ $parcel->payment_form->name ?? '' }}
{{ date('d-m-Y', strtotime($parcel->confirmation_date)) }}
{{ $parcel->launch->patient->name ?? '' }}
{{ $parcel->launch->department->name ?? '' }}
{{ number_format($parcel->value_brute, 2) }}
{{ $parcel->launch->description ?? '' }}
@csrf
@if (isset($launch_image))
@csrf @method('DELETE')
@endif @if (count($parcel_image) > 0) @foreach ($parcel_image as $item)
@csrf @method('DELETE')
@endforeach @endif
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @include('box._parcials.scripts') @endsection {{-- page scripts --}} @section('page-scripts') @include('box._parcials.automations') @endsection