@extends('layouts.dashboard')
@section('title', 'Modulos')
@section('title-dashboard')
Modulos
@endsection
@section('option-dashboard')
{!! Form::open(['route' => 'modulosFiltrar', 'class' => 'horizontal-form', 'files' => true]) !!}
{!! Form::label('filtro', 'Filtro', ['class' => 'control-label']) !!}
{!! Form::close() !!}
@endsection
@section('pg-home')
@endsection
@section('content')
@parent
@include('modulos/create')
@if($displayEdit == 'displayblock')
@include('modulos/edit')
@endif
| {{trans('padrao.editar')}} |
Código |
{{ trans('modulos.nome') }} |
Identificar Acesso |
Comissão de Venda |
Baixar Itens Combo |
{{ trans('modulos.status_id') }} |
{{trans('padrao.excluir')}} |
{{-- */$x=0;/* --}}
@foreach($modulos as $item)
{{-- */$x++;/* --}}
|
{{ $item->id }} |
{{ $item->nome }} |
{{ $item->identificacao }} |
{{ $item->comissao_venda }} |
{{ $item->baixar_itens_combo }} |
{{ $item->status->nome }} |
|
@endforeach
@endsection