I'm trying to use the DataTables tool: link , its implementation seems to be very simple, I put the CSS link, JavaScript, but when I update the page, nothing happens, follow my code:
@extends('layouts.app')
@section('content')
<link rel="stylesheet" href="//cdn.datatables.net/1.10.13/css/jquery.dataTables.min.css">
<form class="navbar-form navbar-left" role="search" action="{!! url('/pesquisar') !!}" method="post" style="margin-left: 40%;">
<div class="form-group">
{!! csrf_field() !!}
<input type="text" name="texto" class="form-control" placeholder="Pesquisar" >
</div>
<button type="submit" class="btn btn-default"><i class="glyphicon glyphicon-search"></i></button>
</form>
<table id="octable" class="display" cellspacing="0" width="100%">
<tr>
<th><center>Imagem</center></th>
<th>Código</th>
<th><center>Produto</center></th>
<th>Custo</th>
<th>Preço</th>
<th>Atualização</th>
<th>Status</th>
<th>Estoque</th>
<th>Distruibuidor</th>
<th style="width: 100px;">Ações</th>
</tr>
<tr>
@foreach($produtos as $produto)
<td><img src="{{$produto->image->erp_image}}" alt="" style="width:50px;height:50px;"></td>
<td>{{$produto->erp_productid}}</td>
<td>{{$produto->descricao->erp_name}}</td>
<td>{{$produto->erp_cost}}</td>
<td>{{$produto->erp_price}}</td>
<td>{{$produto->erp_modifieddate}}</td>
<td>{{$produto->erp_status}}</td>
<td>{{$produto->erp_quantity}}</td>
<td>{{$produto->erp_distributor}}</td>
<td> <a href="{!! url('editar/'. $produto->erp_productid) !!}" class="btn btn-primary" role="button"><i class="glyphicon glyphicon-edit"></i></a>
<button type="button" class="btn btn-danger"><i class="glyphicon glyphicon-remove"></i></button></td>
</tr>
@endforeach
</table>
<script src="//cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#octable').DataTable();
});
</script>
<center>{{$produtos->links()}}</center>
@endsection
Any suggestions?