@@ -22,25 +22,25 @@ |
||
| 22 | 22 | /** |
| 23 | 23 | * @var array Guarded fields |
| 24 | 24 | */ |
| 25 | - protected $guarded = ['*']; |
|
| 25 | + protected $guarded = [ '*' ]; |
|
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * @var array Fillable fields |
| 29 | 29 | */ |
| 30 | - protected $fillable = []; |
|
| 30 | + protected $fillable = [ ]; |
|
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | 33 | * @var array Relations |
| 34 | 34 | */ |
| 35 | - public $hasOne = []; |
|
| 36 | - public $hasMany = []; |
|
| 37 | - public $belongsTo = []; |
|
| 38 | - public $belongsToMany = []; |
|
| 39 | - public $morphTo = []; |
|
| 40 | - public $morphOne = []; |
|
| 41 | - public $morphMany = []; |
|
| 42 | - public $attachOne = []; |
|
| 43 | - public $attachMany = []; |
|
| 35 | + public $hasOne = [ ]; |
|
| 36 | + public $hasMany = [ ]; |
|
| 37 | + public $belongsTo = [ ]; |
|
| 38 | + public $belongsToMany = [ ]; |
|
| 39 | + public $morphTo = [ ]; |
|
| 40 | + public $morphOne = [ ]; |
|
| 41 | + public $morphMany = [ ]; |
|
| 42 | + public $attachOne = [ ]; |
|
| 43 | + public $attachMany = [ ]; |
|
| 44 | 44 | |
| 45 | 45 | /** |
| 46 | 46 | * Filter form fields |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | { |
| 9 | 9 | public function up() |
| 10 | 10 | { |
| 11 | - Schema::create('bedard_shop_discounts', function (Blueprint $table) { |
|
| 11 | + Schema::create('bedard_shop_discounts', function(Blueprint $table) { |
|
| 12 | 12 | $table->engine = 'InnoDB'; |
| 13 | 13 | $table->increments('id'); |
| 14 | 14 | $table->string('name')->default(''); |