@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | public function up() |
| 13 | 13 | { |
| 14 | - Schema::create('banks', function (Blueprint $table) { |
|
| 14 | + Schema::create('banks', function(Blueprint $table) { |
|
| 15 | 15 | $table->increments('id'); |
| 16 | 16 | $table->string('name')->nullable(); |
| 17 | 17 | $table->code('swift_code'); |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | $table->standardTime(); |
| 20 | 20 | }); |
| 21 | 21 | |
| 22 | - Schema::create('bank_accounts', function (Blueprint $table) { |
|
| 22 | + Schema::create('bank_accounts', function(Blueprint $table) { |
|
| 23 | 23 | $table->increments('id'); |
| 24 | 24 | $table->hashslug(); |
| 25 | 25 | $table->belongsTo('banks'); |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | */ |
| 8 | 8 | trait Bankable |
| 9 | 9 | { |
| 10 | - /** |
|
| 10 | + /** |
|
| 11 | 11 | * Get bank. |
| 12 | 12 | */ |
| 13 | 13 | public function bank() |