How to exclude a route with parameters from CSRF verification?
You can cut out a route from CSRF verification by using adding the route to $except property at VerifyCsrfToken middleware.
BY Best Interview Question ON 01 May 2020
Example
protected $except = [
'admin/*/edit/*'
];