@extends('layouts.app', [ 'title' => __('User Management'), 'parentSection' => 'laravel', 'elementName' => 'user-management' ]) @section('title', 'Editar Recebimento |') @section('content') @component('layouts.headers.auth') @component('layouts.headers.breadcrumbs') @slot('title') Editar Recebimento @endslot @endcomponent @endcomponent

Edição de Recebimento #{{ $receipt->id }}

@include('alerts.success') @include('alerts.errors')
@method('PUT') @csrf
Informações do Recebimento #{{ $receipt->id }}
@include('alerts.feedback', ['field' => 'total_price'])
@foreach ($all_sps as $sps)
  • Produto #{{ $sps->spid }} da Venda #{{ $sps->sale_id }}
    Produto: {{ $sps->product }} - Prestador: {{ $sps->provider }} - Cliente: {{ $sps->full_name }} - Valor do Produto: R$ {{ number_format($sps->final_price, 2, ",", ".") }} - Receita Esperada: R$ {{ number_format($sps->commission + $sps->du_tax + $sps->rav_tax + $sps->hide_tax - $sps->rav_discount - $sps->du_discount, 2, ",", ".") }}
    saleproduct_id == $sps->spid) checked @endif @endforeach name="saleproduct_id[]" id="spid{{$sps->spid}}" value="{{$sps->spid}}" class="custom-control-input">

  • @endforeach

    @include('alerts.feedback', ['field' => 'description'])
    @include('layouts.footers.auth')
    @endsection @push('css') @endpush @push('js') @endpush