@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('blog__categories', function (Blueprint $table) { |
|
| 15 | + Schema::create('blog__categories', function(Blueprint $table) { |
|
| 16 | 16 | $table->engine = 'InnoDB'; |
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->timestamps(); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('blog__post_tag', function (Blueprint $table) { |
|
| 15 | + Schema::create('blog__post_tag', function(Blueprint $table) { |
|
| 16 | 16 | $table->engine = 'InnoDB'; |
| 17 | 17 | $table->integer('tag_id'); |
| 18 | 18 | $table->integer('post_id'); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('blog__post_translations', function (Blueprint $table) { |
|
| 15 | + Schema::create('blog__post_translations', function(Blueprint $table) { |
|
| 16 | 16 | $table->engine = 'InnoDB'; |
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('post_id')->unsigned(); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('blog__category_translations', function (Blueprint $table) { |
|
| 15 | + Schema::create('blog__category_translations', function(Blueprint $table) { |
|
| 16 | 16 | $table->engine = 'InnoDB'; |
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->string('name'); |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | public function up() |
| 13 | 13 | { |
| 14 | - Schema::table('blog__posts', function (Blueprint $table) { |
|
| 14 | + Schema::table('blog__posts', function(Blueprint $table) { |
|
| 15 | 15 | $table->engine = 'InnoDB'; |
| 16 | 16 | $table->integer('status')->after('category_id')->default(1); |
| 17 | 17 | }); |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | public function down() |
| 25 | 25 | { |
| 26 | - Schema::table('blog__posts', function (Blueprint $table) { |
|
| 26 | + Schema::table('blog__posts', function(Blueprint $table) { |
|
| 27 | 27 | $table->dropColumn('status'); |
| 28 | 28 | }); |
| 29 | 29 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('blog__posts', function (Blueprint $table) { |
|
| 15 | + Schema::create('blog__posts', function(Blueprint $table) { |
|
| 16 | 16 | $table->engine = 'InnoDB'; |
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('category_id')->index(); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('blog__tag_translations', function (Blueprint $table) { |
|
| 15 | + Schema::create('blog__tag_translations', function(Blueprint $table) { |
|
| 16 | 16 | $table->engine = 'InnoDB'; |
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->string('name'); |
@@ -3,15 +3,15 @@ |
||
| 3 | 3 | use Illuminate\Routing\Router; |
| 4 | 4 | |
| 5 | 5 | /** @var Router $router */ |
| 6 | -$router->group(['prefix' => 'blog'], function (Router $router) { |
|
| 6 | +$router->group(['prefix' => 'blog'], function(Router $router) { |
|
| 7 | 7 | $locale = LaravelLocalization::setLocale() ?: App::getLocale(); |
| 8 | 8 | $router->get('posts', [ |
| 9 | - 'as' => $locale . '.blog', |
|
| 9 | + 'as' => $locale.'.blog', |
|
| 10 | 10 | 'uses' => 'PublicController@index', |
| 11 | 11 | 'middleware' => config('asgard.blog.config.middleware'), |
| 12 | 12 | ]); |
| 13 | 13 | $router->get('posts/{slug}', [ |
| 14 | - 'as' => $locale . '.blog.slug', |
|
| 14 | + 'as' => $locale.'.blog.slug', |
|
| 15 | 15 | 'uses' => 'PublicController@show', |
| 16 | 16 | 'middleware' => config('asgard.blog.config.middleware'), |
| 17 | 17 | ]); |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | /** |
| 24 | 24 | * Display a listing of the resource. |
| 25 | 25 | * |
| 26 | - * @return Response |
|
| 26 | + * @return \Illuminate\Database\Eloquent\Collection |
|
| 27 | 27 | */ |
| 28 | 28 | public function index() |
| 29 | 29 | { |