How can use Data table in Laravel 5.3 using AngularJs

How can use Data table in Laravel 5.3 using AngularJs

AveshahmedAveshahmed Posts: 1Questions: 1Answers: 0

$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;
});

This discussion has been closed.