dev-master
9999999-devIt's a embedded adminer in laravel application.
MIT
The Requires
- php >=5.4.0
v0.1.0
0.1.0.0It's a embedded adminer in laravel application.
MIT
The Requires
- php >=5.4.0
Wallogit.com
2017 © Pedro Peláez
It's a embedded adminer in laravel application.
It's a embedded adminer in Laravel4 application., (*1)
Run composer require command, (*2)
$ composer require kohkimakimoto/laravel-adminer
OR, (*3)
Add dependency in composer.json, (*4)
"require": {
"kohkimakimoto/laravel-adminer": "0.*"
}
and run composer upadte command., (*5)
$ composer update
Add AdminerServiceProvider to providers array in app/config/app.php, (*6)
'providers' => array(
...
'Kohkimakimoto\Adminer\AdminerServiceProvider',
),
Add a routing definition to AdminerController@index. You can use a route you like. The following is example., (*7)
Route::any('adminer', 'Kohkimakimoto\Adminer\Controllers\AdminerController@index');
Finally, Add a little code at the end of public/index.php. You must write the additional code after $app->run();., (*8)
$app->run();
use Kohkimakimoto\Adminer\Facade\Adminer;
if (Adminer::shouldRequestToAdminer()) {
require Adminer::path();
}
OK. Access the uri you defined by your browser. you can see the adminer database management page., (*9)
, (*10)
Kohki Makimoto kohki.makimoto@gmail.com, (*11)
And adminer is created by Jakub Vrána., (*12)
It's a embedded adminer in laravel application.
MIT
It's a embedded adminer in laravel application.
MIT