generator-builder icon indicating copy to clipboard operation
generator-builder copied to clipboard

first issues

Open dhsont opened this issue 8 years ago • 5 comments

It is causing high cpu load by apache while generating scaffold

documentation is not proper for installation

  1. registering \InfyOm\AdminLTETemplates\AdminLTETemplatesServiceProvider::class, is missing in doc for admin lte template

  2. typo open generator-builder it should be generator_builderin Generator GUI Interface installation

  3. publishing layouts section should be in templates section not in advance section of docs

  4. There should be quick start guide in docs where all installation steps available in single file.

dhsont avatar Apr 21 '16 12:04 dhsont

Rollback feature is good fro deleting all files.

Before deleting migration file it should rollback from database.

dhsont avatar Apr 23 '16 07:04 dhsont

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

dhsont avatar Apr 23 '16 08:04 dhsont

php artisan app:name App until namespace issue is fixed.

ClumsySmurf avatar Apr 25 '16 21:04 ClumsySmurf

yes, namespace issue is in a queue.

mitulgolakiya avatar Apr 26 '16 18:04 mitulgolakiya

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');
    }

phillipmadsen avatar Apr 28 '16 22:04 phillipmadsen