Answers for "laravel 4.2 check if request isjson"

PHP
0

laravel check if request wantsjson

extends the SymfonyComponentHttpFoundationRequest 

Determine If The Request Is Asking For JSON
if (Request::wantsJson())
{
    //
}
Posted by: Guest on July-05-2020

Browse Popular Code Answers by Language