I want to see how I can disable CSRF token in Laravel and where I have to disable it. Is this good to disable it or not?
You can disable it in app/http/Kernel.php in the web middleware group.
app/http/Kernel.php
web
Is this good to disable it or not?
No it's not. Read the Wikipedia page about CSRF to understand what CSRF is, the CSRF-Token prevents CSRF.