@extends('layouts.dashboard')
@section('title', 'Folha_pagamento_itens')
@section('title-dashboard')
Folha_pagamento_itens
@endsection
@section('pg-home')
@endsection
@section('content')
@parent
@include('folha_pagamento_itens/create')
@if($displayEdit == 'displayblock')
@include('folha_pagamento_itens/edit')
@endif
Lista de Folha_pagamento_itens
| {{trans('padrao.editar')}} | Código | {{ trans('folha_pagamento_itens.funcionario_id') }} | {{ trans('folha_pagamento_itens.mes') }} | {{ trans('folha_pagamento_itens.ano') }} | {{trans('padrao.excluir')}} |
{{-- */$x=0;/* --}}
@foreach($folha_pagamento_itens as $item)
{{-- */$x++;/* --}}
|
{{ $item->id }} |
{{ $item->funcionario_id }} | {{ $item->mes }} | {{ $item->ano }} |
|
@endforeach
@endsection