I am rescuing information from a database and deploying a blade type template in laravel. The problem I have is that binary digits appear, without having placed them, I really do not know what may be happening. This is my blade template:
@extends('plantillas.mireporte')
@section('cabecerareporte')
@endsection
@section('cuerporeporte')
<p class="display h6 text-uppercase text-center"> </p>
<div class="container-fluid mx-4">
<div class="row d-flex justify-content-center">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-12 ">
<table class="table">
<tbody>
<tr class="table-active ">
@foreach($lista as $e)
<td class="text-uppercase text-white bg-danger">
</td>
@endforeach
</tr>
@foreach($DATOS as $item)
@if($bandera==0)
<tr class="table-active ">
@foreach($lista as $list)
<td></td>
@endforeach
</tr>
@else
<tr class="bg-white text-dark">
@foreach($lista as $list)
<td></td>
@endforeach
</tr>
@endif
@endforeach
</tbody>
</table>
</div>
</div>
</div>
<footer>
</footer>
@endsection
Esto es lo que me aparece: enter image description here
I really do not know what it could be, analyze the labels and they are all closed.
from Newest questions tagged laravel-5 - Stack Overflow http://bit.ly/2vk9oob
via IFTTT
Aucun commentaire:
Enregistrer un commentaire