@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('transaction_status', function (Blueprint $table) { |
|
16 | + Schema::create('transaction_status', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('slug')->unique(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('transaction_types', function (Blueprint $table) { |
|
16 | + Schema::create('transaction_types', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('slug')->unique(); |
@@ -27,7 +27,7 @@ |
||
27 | 27 | "Amount" => floatval($item->amount), |
28 | 28 | "Notes" => $item->notes, |
29 | 29 | "Attachments" => $item->getMedia('attachments') |
30 | - ->map(function ($mediaItem) { |
|
30 | + ->map(function($mediaItem) { |
|
31 | 31 | return $mediaItem->file_name; |
32 | 32 | })->implode(',')]; |
33 | 33 | } |