@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | { |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - static function create(){ |
|
| 40 | + static function create() { |
|
| 41 | 41 | // dd("Taylor Swift felt to Babak Nodoust Love"); |
| 42 | 42 | } |
| 43 | 43 | |
@@ -82,11 +82,11 @@ discard block |
||
| 82 | 82 | { |
| 83 | 83 | $options = $this->options; |
| 84 | 84 | $table = $this->table; |
| 85 | - $this->excel = Excel::create('payments', function (LaravelExcelWriter $excel) use ($table, $options) { |
|
| 85 | + $this->excel = Excel::create('payments', function(LaravelExcelWriter $excel) use ($table, $options) { |
|
| 86 | 86 | $excel->setTitle($options['title']); |
| 87 | 87 | $excel->setCreator($options['creator'])->setCompany($options['company']); |
| 88 | 88 | $excel->setDescription($options['description']); |
| 89 | - $closer = function (LaravelExcelWorksheet $sheet) use ($table){ |
|
| 89 | + $closer = function(LaravelExcelWorksheet $sheet) use ($table){ |
|
| 90 | 90 | $sheet->fromArray($table, null, 'A1', false, false); |
| 91 | 91 | }; |
| 92 | 92 | $excel->sheet("sheet", $closer); |