Saving data of schedular calender with laravel

I am facing problem.error is csrf token is mismatched.

Hi,

Laravel protects your application from cross-site request forgeries by generating a CSRF “token” for each active user session managed by the application. What you need to do is to exclude one particular URI from CSRF protection. The one that triggered when created data is supposed to be saved. You should add a proper value to the $except property in this file app/Http/Middleware/VerifyCsrfToken.php:

protected $except = [
‘scheduler_data’
];

You can find the same solution for Gantt in the tutorial here dhtmlx.com/blog/using-dhtmlxgantt-with-laravel/
Unfortunately currently we haven’t tutorial for Scheduler.