Sindbad~EG File Manager
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h3 align="center">Respuestas realizadas por <b>{{$nombre->username}}</b> </h3><br>
</div>
</div>
<!-- Esto es un comentario-->
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <!-- para que sea responsive-->
<div class="table-responsive">
<table class="table table-striped table-bordered table-condensed table-hover">
<thead> <!-- titulo cabecera-->
<th>Cuestionante </th>
<th>Tiempo de respuesta</th>
<th>Trato</th>
<th>Trabajo en equipo</th>
<th>Actitud de servicio</th>
<th>Calidad de la respuesta</th>
</thead>
@foreach ($respuestas as $res)
<tr>
<td>{{$res->cuestionante}}</td>
<td>
@if($res->respuesta1 == "0")
No responde
@else
{{$res->respuesta1}}
@endif
</td>
<td>
@if($res->respuesta2 == "0")
No responde
@else
{{$res->respuesta2}}
@endif
</td>
<td>
@if($res->respuesta3 == "0")
No responde
@else
{{$res->respuesta3}}
@endif
</td>
<td>
@if($res->respuesta4 == "0")
No responde
@else
{{$res->respuesta4}}
@endif
</td>
<td>
@if($res->respuesta5 == "0")
No responde
@else
{{$res->respuesta5}}
@endif
</td>
</tr>
@endforeach
</table>
</div>
</div>
</div>
</div>
<script src="{{ asset('js/app.js') }}"></script>
@endsection
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists