Laravel Vérifiez si la demande Wantjson

extends the Symfony\Component\HttpFoundation\Request 

Determine If The Request Is Asking For JSON
if (Request::wantsJson())
{
    //
}
Lokesh003