bgultekin / laravel-datatables-bundle

Laravel Datatables Bundle helps to handle server-side works of Datatables Jquery Plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Blade Template Engine not parsing include

mbbender opened this issue · comments

Attempting to include a template file as a column value with no success.

return Datatables::of($users)
->add_column('actions', "@include('admin.users.user_actions')")
->make();

The line: ->add_column('actions', "@include('admin.users.user_actions')") is failing the call. The file simply includes a string "test".