darsain/laravel-console

Browser console for Laravel Framework.
57,242 168
Install
composer require darsain/laravel-console
PHP:>=5.3.0
License:MIT
Last Updated:Jan 4, 2017
Links: GitHub  ·  Packagist
Maintainer: Darsain

Laravel 4 Console

In-browser console for Laravel 4 PHP framework.

This bundle executes your code within ConsoleController@postExecute context, and displays the produced output.

The purpose is to easily test your stuff without creating garbage routes and controllers just to run something, ... I'm sure you know what I'm talking about :)

This bundle is intended for a local testing, and shouldn't get nowhere near your production servers!

Screenshots

Index Output SQL

Installation

Laravel 4

Add this into require-dev in your composer.json file:

"require-dev" : {
	...
	"darsain/laravel-console": "dev-master"
}

Run an update:

php composer.phar update

Register the console service provider in app/config/app.php:

'providers' => array(
	...
	'Darsain\Console\ConsoleServiceProvider',
);

Then publish the bundle assets:

php artisan asset:publish

And you are done! Open the console in:

yourdomain.com/console

Laravel 3

Laravel 3 version along with installation process can be found in the L3 branch.

Related Packages

bagoesz21/laravel-console-browser

Browser console for Laravel Framework.

804 2
teepluss/console

Browser console for Laravel Framework.

51,652 43
emir/laravel-webartisan

Web artisan allows to run artisan console commands using a browser

672 56
hisorange/browser-detect

Browser & Mobile detection package for Laravel.

11,027,147 1,142
unicodeveloper/laravel-identify

A Laravel 5 Package Provider to Identify/detect a user's browser, device, operat...

21,996 193