@extends('layouts.dashboard') @section('content') .box .box-header.dark %center %h2 Registros de landings de solicitudes de información .box-body .table-responsive %table#users-table.table.table-striped.b-t.b-b.table-hover %thead %tr %th Id %th Nombre %th Email %th Teléfono %th Landing %th Origin %th Fecha de registro %th URL @endsection @push('scripts') :javascript $(function() { $('#users-table').DataTable({ processing: true, serverSide: true, dom: 'Bfrtip', buttons: [ 'reload' ], "responsive": true, ajax: '{{ route("getDataLandings") }}' }); }); @endpush