vbarbarosh/laravel-debug-eval

A rudimentary UI with backend for evaluating PHP remotely. For debugging purposes only.
31,845 1
Install
composer require vbarbarosh/laravel-debug-eval
Latest Version:1.10.0
PHP:^8.1
License:MIT
Last Updated:Jul 25, 2026
Links: GitHub  ·  Packagist
Maintainer: vbarbarosh

A UI and backend for evaluating PHP remotely. For debugging purposes only.

cover

Installation

composer require vbarbarosh/laravel-debug-eval

Usage in Laravel

Route::any('/laravel-debug-eval', function () {
    // 1. Ensure that current user has access to this endpoint
    return vbarbarosh\laravel_debug_eval();
});

Executing long running task

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);
    },
]);

YouTube

ALT

Credits

Related Packages

php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,315 160
oriceon/oauth-5-laravel

OAuth Service Provider for Laravel 5

1,671,889 174
artdarek/oauth-4-laravel

OAuth Service Provider for Laravel 4

523,362 677
oriceon/toastr-5-laravel

Easy toastr notifications for Laravel 5

503,999 79