@extends('layouts.dashboard')
@section('title', 'Combo')
@section('title-dashboard')
@if($displayEdit != 'displayblock')
@endif
Combo
@endsection
@section('option-dashboard')
{!! Form::open(['route' => 'combosFiltrar', 'class' => 'horizontal-form', 'files' => true]) !!}
{!! Form::label('filtro', 'Filtro', ['class' => 'control-label']) !!}
{!! Form::close() !!}
@endsection
@section('pg-home')
@endsection
@section('content')
@parent
@if($displayEdit != 'displayblock')
@include('itens_combo/create')
@endif
@if($displayEdit == 'displayblock')
@include('itens_combo/edit')
@endif
Itens do Combo
{!! Form::open(['route' => 'combosPdf', "target"=>"_blank", 'class' => 'horizontal-form']) !!}
{!! Form::close() !!}
| Cod. |
Produto |
Qtd. |
Pr UN |
Pr Total |
|
{{trans('padrao.editar')}} |
{{trans('padrao.visualizar')}} |
Código | Produto | Grupo | Valor | {{trans('padrao.excluir')}} |
{{-- */$x=0;/* --}}
@foreach($combos as $item)
{{-- */$x++;/* --}}
|
|
|
{{ $item->id }} |
{{ $item->nome }} |
{{ $item->grupos->nome }} |
{{ number_format($item->vlr_compra_est,2,',','.') }} |
|
@endforeach
@endsection