Skip to content

Commit

Permalink
Merge branch 'feature/installer' of https://github.com/mooxphp/moox i…
Browse files Browse the repository at this point in the history
…nto feature/installer
  • Loading branch information
Kim-the-Diamond committed Mar 7, 2024
2 parents d5f35fc + 672dab2 commit 5d9f248
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 26 deletions.
6 changes: 0 additions & 6 deletions app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,25 +74,19 @@ public function panel(Panel $panel): Panel

\Moox\User\UserPlugin::make(),


\Moox\Sync\SyncPlugin::make(),
\Moox\Sync\PlatformPlugin::make(),


\Moox\Press\PressPlugin::make(),


\Moox\Page\PagePlugin::make(),


\Moox\Jobs\JobsPlugin::make(),
\Moox\Jobs\JobsFailedPlugin::make(),
\Moox\Jobs\JobsBatchesPlugin::make(),


\Moox\Builder\BuilderPlugin::make(),


\Moox\Audit\AuditPlugin::make(),

]);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
return new class extends Migration
{
/**
* Run the migrations.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public function up(): void
* Reverse the migrations.
*/
public function down(): void

{
Schema::dropIfExists('sync');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public function up(): void
* Reverse the migrations.
*/
public function down(): void

{
Schema::dropIfExists('press');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public function up(): void
* Reverse the migrations.
*/
public function down(): void

{
Schema::dropIfExists('page');
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
return new class extends Migration
{
/**
* Run the migrations.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
return new class extends Migration
{
/**
* Run the migrations.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
return new class extends Migration
{
/**
* Run the migrations.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
return new class extends Migration
{
/**
* Run the migrations.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public function up(): void
* Reverse the migrations.
*/
public function down(): void

{
Schema::dropIfExists('builder');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public function up(): void
* Reverse the migrations.
*/
public function down(): void

{
Schema::dropIfExists('audit');
}
Expand Down

0 comments on commit 5d9f248

Please sign in to comment.