in Technology by
How to turn off CRSF protection for specific route in Laravel?

1 Answer

0 votes
by

To turn off CRSF protection in Laravel add following codes in “app/Http/Middleware/VerifyCsrfToken.php”

 
//add an array of Routes to skip CSRF check
private $exceptUrls = ['controller/route1', 'controller/route2'];
 //modify this function
public function handle($request, Closure $next) {
 //add this condition foreach($this->exceptUrls as $route) {
 if ($request->is($route)) {
  return $next($request);
 }
}
return parent::handle($request, $next);
} 

Related questions

0 votes
    I am trying to create authentication using Laravel Passport, I have configured everything the right way as ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
0 votes
    Activate _____________ when you're required it to use, otherwise turn it off for security purpose. (a) ... for-Cyber Security:,Cyber Security-Jobs:,Cyber Security Applications...
asked Nov 1, 2021 in Education by JackTerrance
0 votes
    (d) Which of the following is used to turn off the word wrapping? (i) valign (ii) wrap (iii) align (iv) nowrap g 00 Select the correct answer from above options...
asked Nov 29, 2021 in Education by JackTerrance
0 votes
    Why do we use Route in laravel?...
asked Sep 28, 2021 in Technology by JackTerrance
0 votes
    What is a Route in laravel?...
asked Sep 28, 2021 in Technology by JackTerrance
0 votes
    I'm trying to make a post request via jquery but It seems to be something wrong. Route: Route:: ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 17, 2022 in Education by JackTerrance
0 votes
    I'm trying to make a post request via jquery but It seems to be something wrong. Route: Route:: ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I have a table structure like this : subscribers with attributes: id, status I want to have a way ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 2, 2022 in Education by JackTerrance
0 votes
    Sometimes the side of concrete bridges is observed to turn black in colour. What is the reason for this phenomenon?...
asked Jan 1, 2021 in Technology by JackTerrance
0 votes
    How to turn the service defined below in the spec into an external one?...
asked Jul 15, 2021 in Technology by JackTerrance
0 votes
    1.how natural threats are differentbfrom threats from Human action ? 2. what are natural threats ?what are the ... fast its urgent Select the correct answer from above options...
asked Dec 5, 2021 in Education by JackTerrance
0 votes
    1.how natural threats are differentbfrom threats from Human action ? 2. what are natural threats ?what are the ... fast its urgent Select the correct answer from above options...
asked Nov 26, 2021 in Education by JackTerrance
0 votes
    1.how natural threats are differentbfrom threats from Human action ? 2. what are natural threats ?what are the ... fast its urgent Select the correct answer from above options...
asked Nov 25, 2021 in Education by JackTerrance
0 votes
    I have a split screen design. I'd like to access the folder ID from the parent route only when ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 30, 2022 in Education by JackTerrance
...