File: /home/ser65kty/cardedeu.serversmw.com/resources/views/compteempresa.blade.php
<section class="cabecera">
<div class="container">
<div class="">
<br>
<h2 class="text-center">Les meves sol.licituds de publicació d'ofertes de feina</h2>
<br>
<div class="afegiroferta"><a href="/publicaroferta">Afegir oferta</a></div>
<br>
<table class="table table-striped table-bordered" id="tablaofertas">
<thead>
<th>Empresa</th>
<th>TÃtol</th>
<th>Ocupacio</th>
<th class="select-filter">Municipi</th>
</thead>
<tbody>
@foreach($ofertas as $oferta)
<tr id="{{ $oferta->id }}" name="{{ $oferta->name }}">
<td>{{$oferta->user->nameempresa}}</td>
<td>{{$oferta->titol}}</td>
<td>{{$oferta->ocupacio}}</td>
<td>{{$oferta->municipitreball}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</section>
<div class="clearfix"></div>