@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Criar Lançamento') {{-- vendor styles --}} @section('vendor-styles') @endsection @section('content') Dados do lançamento @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 @csrf Cod. Idn. Parcela Confirmado Usuario {{ Auth::user()->name }} Vencimento Tipo Selecione Entrada(Crédito) Saída(Débito) Plano de Contas Selecione @foreach ($accounts_plan as $item) {{ $item->name }} @endforeach Forma de Pagamento Selecione @foreach ($payment_options as $item) {{ $item->name }} @endforeach Lançamento Nº Documento Nº Fiscal NFe Departamento Selecione @foreach ($departments as $item) {{ $item->name }} @endforeach Ficha Selecione vincular ficha @foreach ($surgeries as $item) {{ $item->id }} - {{ $item->patient->name ?? '' }} @endforeach Entidade Selecione @foreach ($patients as $item) {{ $item->name }} @endforeach Valor Original S/N Descrição sobre o lançamento Escolhar o arquivo para upload Escolher arquivo Valor Total {{-- parcelamento --}} Valor lançamento Repetição Mensal Bimestral Intervalor Interv. Qtd. Data 1º venc. Número Vencimento Valor {{-- fim área dos parcelamentos --}} Lançar @endsection {{-- vendor scripts --}} @section('vendor-scripts') @include('box._parcials.scripts') @include('andes._parcials.patiets') @include('andes._parcials.insurance') @include('andes._parcials.hospital') @endsection {{-- page scripts --}} @section('page-scripts') @include('box._parcials.automations') @endsection