PHP Classes

File: resources/views/admin/pages/componentPlanilla.blade.php

Recommend this page to a friend!
  Classes of Luis Toscano   Nominax   resources/views/admin/pages/componentPlanilla.blade.php   Download  
File: resources/views/admin/pages/componentPlanilla.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Nominax
Control the hours worked by employees
Author: By
Last change:
Date: 2 months ago
Size: 633 bytes
 

Contents

Class file image Download

<table class="table table-striped">
    <thead>
        <tr>
            <th>Empleado</th>
            <th>Horas Trabajadas</th>
            <th>Tasa</th>
            <th>Salario Bruto</th>
        </tr>
    </thead>
    <tbody>
        @if($registros)
            @foreach($registros as $registro)
                <tr>
                    <td>{{$registro->empleado->nombres}}</td>
                    <td>{{$registro->horas_trabajadas}}</td>
                    <td>{{$registro->tasa}}</td>
                    <td>{{$registro->salario_bruto}}</td>
                </tr>
            @endforeach
        @endif
    </tbody>
</table>