@extends('layouts.dashboard') @section('content') .row .col-md-12 .box .box-header.dark %h2 Listado de entradas %span %a.btn.btn-xs.btn-info.button-ml{:href=>"{{route('blog.admin.entry.create')}}"} %i.fas.fa-plus Agregar Entrada .box-body %table#posts.table %tr %th # %th Publicación %th Contenido %th @endsection @section('script_extras') :javascript @endsection @push('scripts') :javascript $(function() { $('#posts').DataTable({ processing: true, serverSide: true, pageLength: 25, ajax: '{{ route("data.entries") }}', columns: [ {data: 0, name: 'id'}, {data: 11, name: 'preview'}, {data: 12, name: 'content'}, {data: 13, name: 'form'}, ] }); }); @endpush