@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('meta_tags', function (Blueprint $table) { |
|
16 | + Schema::create('meta_tags', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | |
19 | 19 | // url path - without domain |
@@ -22,7 +22,7 @@ |
||
22 | 22 | */ |
23 | 23 | 'title' => ['title' => 'Title'], // recommend max => 60 |
24 | 24 | 'description' => ['title' => 'Description'], // recommend max => 300 |
25 | - 'keywords' => ['title' => 'Keywords',], // recommend max => 300 |
|
25 | + 'keywords' => ['title' => 'Keywords', ], // recommend max => 300 |
|
26 | 26 | |
27 | 27 | /* ----------------------------------------------------------------- |
28 | 28 | | Robots tag value: 'none', 'all', 'index', 'noindex', 'nofollow', 'follow', |