PHP code example of creativeorange / laravel-served-by
1. Go to this page and download the library: Download creativeorange/laravel-served-by 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/ */
creativeorange / laravel-served-by example snippets
protected $middleware = [
\Creativeorange\ServedBy\Http\Middleware\ServedBy::class,
// ...
];
/**
* Get the middleware the job should pass through.
*
* @return array
*/
public function middleware()
{
return [new Creativeorange\ServedBy\Http\Middleware\Jobs\ServedBy];
}
shell
php artisan vendor:publish --tag="served-by"