PHP code example of tzsk / crypton
1. Go to this page and download the library: Download tzsk/crypton 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/ */
tzsk / crypton example snippets
$routeMiddleware = [
'crypton' => \Tzsk\Crypton\Middleware\EncryptRequestResponse::class,
];
Route::middleware('crypton')->post('some-endpoint', function(Request $request) {
return Post::paginate($request->per_page ? : 10);
});
bash
$ php artisan crypton:publish