generator-builder
generator-builder copied to clipboard
first issues
It is causing high cpu load by apache while generating scaffold
documentation is not proper for installation
-
registering \InfyOm\AdminLTETemplates\AdminLTETemplatesServiceProvider::class, is missing in doc for admin lte template
-
typo
open generator-builder
it should begenerator_builder
in Generator GUI Interface installation -
publishing layouts section should be in templates section not in advance section of docs
-
There should be quick start guide in docs where all installation steps available in single file.
Rollback feature is good fro deleting all files.
Before deleting migration file it should rollback from database.
Error on php artisan route:list
php artisan route:list
[Symfony\Component\Debug\Exception\FatalErrorException]
Cannot use InfyOm\Generator\Controller\AppBaseController as AppBaseController because the name is already in use
php artisan app:name App until namespace issue is fixed.
yes, namespace issue is in a queue.
You can always do something like this for the rollback. I mean run this before you delete everything.
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
$table = 'pages';
Storage::disk('local')->put($table . '_' . date('Y-m-d_H-i-s') . '.bak', json_encode(DB::table($table)->get()));
Schema::drop('pages');
}