@extends('layouts.dashboard')
@section('title', 'Grupos Produtos')
@section('title-dashboard')
Grupos Produtos
@endsection
@section('option-dashboard')
{!! Form::open(['route' => 'grupos-produtosFiltrar', 'class' => 'horizontal-form', 'files' => true]) !!}
{!! Form::label('filtro', 'Filtro', ['class' => 'control-label']) !!}
{!! Form::close() !!}
@endsection
@section('pg-home')
@endsection
@section('content')
@parent
@include('grupos_produtos/create')
@if($displayEdit == 'displayblock')
@include('grupos_produtos/edit')
@endif
| {{trans('padrao.editar')}} | Código | {{ trans('grupos_produtos.nome') }} | {{ trans('grupos_produtos.status_id') }} | {{ trans('grupos_produtos.lucro') }} | {{trans('padrao.excluir')}} |
{{-- */$x=0;/* --}}
@foreach($grupos_produtos as $item)
{{-- */$x++;/* --}}
|
{{ $item->id }} |
{{ $item->nome }} | {{ $item->status->nome }} | {{ $item->lucro }} |
|
@endforeach
@endsection