Hi,
we bought the enterprise edition to use it with latest Laravel 5.5.
We had initial problems after installing with or without composer where it could not find the GroceryCrud class. The namespace location registered by composer was as -
'GroceryCrud' => array($vendorDir . '/grocerycrud/enterprise/src')
Whereas the folder structure we got was "vendor/grocerycrud/enterprise/grocery-crud-enterprise-v2/src"
After fixing the locaiton the class not found got fixed and we were able to get the employee table rendered as expected.
However, if we try to edit, delete or basically do any type of post we get "Method Not Allowed" error as its not defined in the Routes I presume ?
Should this be working out of the box or I should be defining routes and handling response data manually, I am struggling to find laravel specific examples ?
Also should I be adding {{ csrf_field() }} somewhere in the view to avoid token mismatch ?
Can you please help.
Thanks!