How can use Data table in Laravel 5.3 using AngularJs
How can use Data table in Laravel 5.3 using AngularJs
$scope.dtOptions = DTOptionsBuilder.newOptions()
.withDisplayLength(5)
.withOption('processing', true)
.withOption('serverSide', true)
.withOption('bLengthChange', false)
var get_all_appointment_data = appointment_services.get_all_appointment_data(API_URL);
get_all_appointment_data.success(function (response) {
$scope.appointments = response;
});