@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Lista de Lançamentos') {{-- page style --}} @section('page-styles') @endsection @section('content') {{-- inicio filtro --}}
{{-- fim menu de filtro --}} {{-- inicio da tabela --}}
@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Ops! Ouve algum problema.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach ($parcels as $item) @endforeach
Lanç. Rep. Pcl. Data ASC. Venc. Ficha NF Entidade Prof. Dep. Pcl. Total Ações
@if (isset($item->status)) Pago @endif @if ($item->confirm_transfer == 1) Pago @endif @if (isset($item->current_installment)) {{ $item->current_installment + 1 . ' / ' . $item->total_installment }} @else {{ '' }} @endif @if (isset($item->launch->surgery) && $item->launch->surgery != null) {{ date('Y-m-d', strtotime($item->launch->surgery->date ?? '')) }} @endif {{ date('Y-m-d', strtotime($item->due_date)) }} @if (isset($item->launch->surgery->id)) {{ $item->launch->surgery->id ?? '' }} @endif {{ $item->launch->fiscal_number ?? '' }} {{ $item->launch->patient->name ?? '' }} {{ $item->launch->surgery->anesthetist->name ?? '' }} {{ $item->launch->department->name ?? '' }} {{ number_format($item->value_brute, 2) }} {{ number_format($item->value_total, 2) }} @if ($item->status == 1) @else @endif
@if ($item->launch->type_launch == 1)
Crédito
@else
Débito
@endif
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection