PHP code example of binarcode / laravel-stateless-session
1. Go to this page and download the library: Download binarcode/laravel-stateless-session library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
binarcode / laravel-stateless-session example snippets
use Binarcode\LaravelStatelessSession\Http\Middleware\StatelessStartSession;
use Binarcode\LaravelStatelessSession\Http\Middleware\StatelessVerifyCsrfToken;
->middleware([
StatelessStartSession::class,
StatelessVerifyCsrfToken::class,
]);
Route::post('api/subscribe', function (Request $request) {
// at this point the CSRF token is verified
Subscribers::createFromEmail($request->get('email'));
return response('', 201)->json();
})->middleware([
StartStatelessSession::class,
VerifyHeaderCsrfToken::class,
]);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.