@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Editar Lançamento') {{-- vendor styles --}} @section('vendor-styles') @endsection @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif {{-- @if ($message = Session::get('parcel')) @endif --}} @if (count($errors) > 0)
Ops! Ouve algum problema com o Upload.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
{{ $parcel->launch_id }}
{{ $launch->surgery->id ?? '' }}
{{ $parcel->current_installment + 1 }}
@isset($parcel->confirmation_date) {{ date('Y-m-d', strtotime($parcel->confirmation_date)) }} @endisset
{{ $launch->user->name ?? '' }}
{{ date('d/m/Y', strtotime($parcel->due_date)) ?? '' }}
{{ date('d/m/Y') }}
{{ $parcel->value_brute ?? '' }}
{{-- Vencimentos e parcelamentos --}} @if ($parcel->status == null)

Lançar

@endif
@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