diff options
-rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -32,10 +32,18 @@ RESTful PHP API for Botleagues * In `config/botleaguesapi.php`, set `allowed_origin` to (an array of) the allowed origin(s) of API requests. Use `*` for a wildcard. -* In `/.env`, set the appropriate configuration values: +* In `.env`, set the appropriate configuration values: * `APP_ENV`, `APP_DEBUG`, `APP_KEY`, `APP_URL` * `DB_HOST`, `DB_DATABASE`, `DB_USERNAME`, `DB_PASSWORD` * `API_VERSION=v1`, `API_DEBUG`, `API_DOMAIN` +* In your `app/Http/Middleware/VerifyCsrfToken.php`, replace the `handle()` function with: + + public function handle($request, Closure $next) { + return $next($request); + } + + This disables the default CSRF middleware. + After this, you should be good to go. Add configuration settings and the like as usual. |