All Projects → darsain → Laravel Console

darsain / Laravel Console

In-browser console for Laravel PHP framework.

Labels

Laravel 4 Console

In-browser console for Laravel 4 PHP framework.

This bundle executes your code within [email protected] 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].