Skip to content

Instantly share code, notes, and snippets.

@deleugpn
Created April 8, 2018 11:47
Show Gist options
  • Save deleugpn/f6fcb19b5b2eda76457678c17b450e9f to your computer and use it in GitHub Desktop.
Save deleugpn/f6fcb19b5b2eda76457678c17b450e9f to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Http\Request;
class BaseRequest extends Request
{
public function expectsJson()
{
return true;
}
public function wantsJson()
{
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment