@extends('BaseSistemaWeb')
@section('CSS')
{{ HTML::style('DataTables/dataTables.bootstrap.min.css') }}
{{ HTML::style('DataTables/responsive.dataTables.min.css') }}
@stop
@section('Contenido')
Gestión de ventas en línea
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
Nombre del atributo |
Acciones |
@stop
@section('JS')
{{ HTML::script('DataTables/jquery.dataTables.min.js') }}
{{ HTML::script('DataTables/dataTables.bootstrap.min.js') }}
{{ HTML::script('DataTables/dataTables.responsive.min.js') }}
@stop
@section('JSOr')
$("a[data-toggle=\"tab\"]").on("shown.bs.tab", function (e) { $.fn.dataTable.tables( {visible: true, api: true} ).columns.adjust(); });
$("#tblAtributosAgregar").DataTable({
"processing": true,
"serverSide": true,
"ajax": "{{ URL::route('SysWebGClientesAtributos') }}",
columns: [
{data: "nombre", name: "nombre"},
{data: "acciones", name: "acciones", "searchable": false, "orderable": false, "class": "text-center"}
],
"language": {
"url": "{{ asset('DataTables/Spanish.json') }}"
},
"fnDrawCallback": function( oSettings ) {
$(".tooltips").tooltip();
},
autoWidth: false,
responsive: true
});
@if(Session::has('EliminarMensajeS'))
new PNotify({ title: "Realizado", text: "{{ Session::get('EliminarMensajeS') }}", type: "success" });
@endif
@if(Session::has('EliminarMensajeE'))
new PNotify({ title: "Realizado", text: "{{ Session::get('EliminarMensajeE') }}", type: "error" });
@endif
@stop