@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('media', function (Blueprint $table) { |
|
16 | + Schema::create('media', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('stored_name'); |
19 | 19 | $table->string('file_name'); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | public function boot() |
15 | 15 | { |
16 | 16 | $this->loadRoutesFrom(__DIR__.'/routes/web.php'); |
17 | - $this->loadMigrationsFrom(__DIR__ .'/database/migrations'); |
|
17 | + $this->loadMigrationsFrom(__DIR__.'/database/migrations'); |
|
18 | 18 | $this->loadViewsFrom(__DIR__.'/resources/views', 'media'); |
19 | 19 | $this->mergeConfigFrom( |
20 | 20 | __DIR__.'/config/media.php', 'media' |