webix and laravel

I have read in one of the comments for php connectors that laravel is not compatible. however dhtmlx have released a new connector that is. Will this work as middleware between webix and the DB?

You can create a RESTfull resource controller

http://laravel.com/docs/5.1/controllers#restful-resource-controllers

and use it within any Webix control

webix.ui({
  view:"datatable",
  autoConfig:true,
  url:"/photos",      // load data from DB
  save:"/photos"    // save all changes back to DB 
})

I tried this, but I’m getting a 404 Object not Found on the link. When I try to use {{ url(’/getResourceTable’) }} I’m getting the json in the browser inspector, but webix still doesn’t render the table.