@@ -16,7 +16,7 @@ |
||
| 16 | 16 | /** |
| 17 | 17 | * @var array |
| 18 | 18 | */ |
| 19 | - protected $fillable = ['name', 'link', 'active', 'rank']; |
|
| 19 | + protected $fillable = [ 'name', 'link', 'active', 'rank' ]; |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | 22 | * @var bool |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | /** |
| 18 | 18 | * @var array |
| 19 | 19 | */ |
| 20 | - protected $fillable = ['key', 'link']; |
|
| 20 | + protected $fillable = [ 'key', 'link' ]; |
|
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | 23 | * @var bool |
@@ -17,5 +17,5 @@ |
||
| 17 | 17 | /** |
| 18 | 18 | * @var array |
| 19 | 19 | */ |
| 20 | - protected $fillable = ['link', 'image_url', 'rank', 'active']; |
|
| 20 | + protected $fillable = [ 'link', 'image_url', 'rank', 'active' ]; |
|
| 21 | 21 | } |
| 22 | 22 | \ No newline at end of file |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | |
| 7 | 7 | class PostTranslation extends Model |
| 8 | 8 | { |
| 9 | - protected $fillable = ['*']; |
|
| 9 | + protected $fillable = [ '*' ]; |
|
| 10 | 10 | |
| 11 | 11 | public $timestamps = false; |
| 12 | 12 | } |
| 13 | 13 | \ No newline at end of file |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | { |
| 10 | 10 | use HasTranslations; |
| 11 | 11 | |
| 12 | - protected $fillable = ['*']; |
|
| 12 | + protected $fillable = [ '*' ]; |
|
| 13 | 13 | |
| 14 | - public $translatedAttributes = ['name']; |
|
| 14 | + public $translatedAttributes = [ 'name' ]; |
|
| 15 | 15 | } |
| 16 | 16 | \ No newline at end of file |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | /** |
| 15 | 15 | * @var array |
| 16 | 16 | */ |
| 17 | - protected $fillable = ['user_id', 'product_id', 'seller_id']; |
|
| 17 | + protected $fillable = [ 'user_id', 'product_id', 'seller_id' ]; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @var bool |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | { |
| 55 | 55 | $router->group([ |
| 56 | 56 | 'namespace' => $this->namespace, 'middleware' => 'web', |
| 57 | - ], function ($router) { |
|
| 57 | + ], function($router) { |
|
| 58 | 58 | require app_path('Http/routes.php'); |
| 59 | 59 | }); |
| 60 | 60 | } |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | /** |
| 15 | 15 | * @var array |
| 16 | 16 | */ |
| 17 | - protected $fillable = ['active']; |
|
| 17 | + protected $fillable = [ 'active' ]; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | /** |
| 15 | 15 | * @var array |
| 16 | 16 | */ |
| 17 | - protected $fillable = ['name', 'phone', 'description']; |
|
| 17 | + protected $fillable = [ 'name', 'phone', 'description' ]; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |