@@ -54,7 +54,7 @@  | 
                                                    ||
| 54 | 54 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'mongicommerce');  | 
                                                        
| 55 | 55 | |
| 56 | 56 | // Register the main class to use with the facade  | 
                                                        
| 57 | -        $this->app->singleton('mongicommerce', function () { | 
                                                        |
| 57 | +        $this->app->singleton('mongicommerce', function() { | 
                                                        |
| 58 | 58 | return new Mongicommerce;  | 
                                                        
| 59 | 59 | });  | 
                                                        
| 60 | 60 | }  | 
                                                        
@@ -4,4 +4,4 @@  | 
                                                    ||
| 4 | 4 | use Mongi\Mongicommerce\Http\Controllers\admin\DashboardController;  | 
                                                        
| 5 | 5 | |
| 6 | 6 | //BackEnd Pages  | 
                                                        
| 7 | -Route::get('/admin/dashboard',[DashboardController::class,'page'])->name('admin.dashboard'); | 
                                                        |
| 7 | +Route::get('/admin/dashboard', [DashboardController::class, 'page'])->name('admin.dashboard'); | 
                                                        |
@@ -6,7 +6,7 @@  | 
                                                    ||
| 6 | 6 | |
| 7 | 7 | class DashboardController  | 
                                                        
| 8 | 8 |  { | 
                                                        
| 9 | -    public function page(){ | 
                                                        |
| 9 | +    public function page() { | 
                                                        |
| 10 | 10 |          return view('mongicommerce::admin.pages.dashboard'); | 
                                                        
| 11 | 11 | }  | 
                                                        
| 12 | 12 | }  | 
                                                        
@@ -13,7 +13,7 @@  | 
                                                    ||
| 13 | 13 | */  | 
                                                        
| 14 | 14 | public function up()  | 
                                                        
| 15 | 15 |      { | 
                                                        
| 16 | -        Schema::create('orders', function (Blueprint $table) { | 
                                                        |
| 16 | +        Schema::create('orders', function(Blueprint $table) { | 
                                                        |
| 17 | 17 | $table->id();  | 
                                                        
| 18 | 18 |              $table->unsignedBigInteger('user_id'); | 
                                                        
| 19 | 19 |              $table->date('shipped_date')->nullable(); | 
                                                        
@@ -13,7 +13,7 @@  | 
                                                    ||
| 13 | 13 | */  | 
                                                        
| 14 | 14 | public function up()  | 
                                                        
| 15 | 15 |      { | 
                                                        
| 16 | -        Schema::create('statuses_order', function (Blueprint $table) { | 
                                                        |
| 16 | +        Schema::create('statuses_order', function(Blueprint $table) { | 
                                                        |
| 17 | 17 | $table->id();  | 
                                                        
| 18 | 18 |              $table->string('name'); | 
                                                        
| 19 | 19 |              $table->string('color'); | 
                                                        
@@ -13,7 +13,7 @@  | 
                                                    ||
| 13 | 13 | */  | 
                                                        
| 14 | 14 | public function up()  | 
                                                        
| 15 | 15 |      { | 
                                                        
| 16 | -        Schema::create('sub_categories', function (Blueprint $table) { | 
                                                        |
| 16 | +        Schema::create('sub_categories', function(Blueprint $table) { | 
                                                        |
| 17 | 17 | $table->id();  | 
                                                        
| 18 | 18 |              $table->string('name'); | 
                                                        
| 19 | 19 |              $table->unsignedBigInteger('category_id'); | 
                                                        
@@ -13,7 +13,7 @@  | 
                                                    ||
| 13 | 13 | */  | 
                                                        
| 14 | 14 | public function up()  | 
                                                        
| 15 | 15 |      { | 
                                                        
| 16 | -        Schema::create('categories', function (Blueprint $table) { | 
                                                        |
| 16 | +        Schema::create('categories', function(Blueprint $table) { | 
                                                        |
| 17 | 17 | $table->id();  | 
                                                        
| 18 | 18 |              $table->string('name'); | 
                                                        
| 19 | 19 | $table->timestamps();  | 
                                                        
@@ -13,7 +13,7 @@  | 
                                                    ||
| 13 | 13 | */  | 
                                                        
| 14 | 14 | public function up()  | 
                                                        
| 15 | 15 |      { | 
                                                        
| 16 | -        Schema::create('order_products', function (Blueprint $table) { | 
                                                        |
| 16 | +        Schema::create('order_products', function(Blueprint $table) { | 
                                                        |
| 17 | 17 | $table->id();  | 
                                                        
| 18 | 18 |              $table->unsignedBigInteger('order_id'); | 
                                                        
| 19 | 19 |              $table->unsignedBigInteger('product_id'); | 
                                                        
@@ -13,7 +13,7 @@  | 
                                                    ||
| 13 | 13 | */  | 
                                                        
| 14 | 14 | public function up()  | 
                                                        
| 15 | 15 |      { | 
                                                        
| 16 | -        Schema::create('cart', function (Blueprint $table) { | 
                                                        |
| 16 | +        Schema::create('cart', function(Blueprint $table) { | 
                                                        |
| 17 | 17 | $table->id();  | 
                                                        
| 18 | 18 |              $table->unsignedBigInteger('user_id'); | 
                                                        
| 19 | 19 |              $table->unsignedBigInteger('product_id'); |