@@ -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('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'); | 
                                                        
@@ -10,9 +10,9 @@  | 
                                                    ||
| 10 | 10 | |
| 11 | 11 | class DetailTypeSeeder extends Seeder  | 
                                                        
| 12 | 12 |  { | 
                                                        
| 13 | -     public function run(){ | 
                                                        |
| 14 | -         foreach (DetailTypes::all() as $detail) { | 
                                                        |
| 15 | -             DB::table('detail_type')->insert(['name' => $detail]); | 
                                                        |
| 16 | - }  | 
                                                        |
| 17 | - }  | 
                                                        |
| 13 | +        public function run(){ | 
                                                        |
| 14 | +            foreach (DetailTypes::all() as $detail) { | 
                                                        |
| 15 | +                DB::table('detail_type')->insert(['name' => $detail]); | 
                                                        |
| 16 | + }  | 
                                                        |
| 17 | + }  | 
                                                        |
| 18 | 18 | }  | 
                                                        
@@ -10,7 +10,7 @@  | 
                                                    ||
| 10 | 10 | |
| 11 | 11 | class DetailTypeSeeder extends Seeder  | 
                                                        
| 12 | 12 |  { | 
                                                        
| 13 | -     public function run(){ | 
                                                        |
| 13 | +     public function run() { | 
                                                        |
| 14 | 14 |           foreach (DetailTypes::all() as $detail) { | 
                                                        
| 15 | 15 |               DB::table('detail_type')->insert(['name' => $detail]); | 
                                                        
| 16 | 16 | }  | 
                                                        
@@ -13,7 +13,7 @@  | 
                                                    ||
| 13 | 13 | */  | 
                                                        
| 14 | 14 | public function up()  | 
                                                        
| 15 | 15 |      { | 
                                                        
| 16 | -        Schema::create('products', function (Blueprint $table) { | 
                                                        |
| 16 | +        Schema::create('products', function(Blueprint $table) { | 
                                                        |
| 17 | 17 | $table->id();  | 
                                                        
| 18 | 18 |              $table->string('name'); | 
                                                        
| 19 | 19 |              $table->text('description'); | 
                                                        
@@ -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('detail', function (Blueprint $table) { | 
                                                        |
| 16 | +        Schema::create('detail', function(Blueprint $table) { | 
                                                        |
| 17 | 17 | $table->id();  | 
                                                        
| 18 | 18 |              $table->string('name'); | 
                                                        
| 19 | 19 |              $table->unsignedBigInteger('category_id'); |