PHP code example of vbarbarosh / laravel-debug-eval
1. Go to this page and download the library: Download vbarbarosh/laravel-debug-eval 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/ */
vbarbarosh / laravel-debug-eval example snippets
longrun([
'init' => function () {
return Article::query()->pluck('articles.id'),
},
'done' => function () {
dump('done');
},
'run' => function ($items) {
$query = Article::query()->whereIn('id', $items);
Article::backup($query);
},
]);