BillImport.php 190 B

12345678910111213141516
  1. <?php
  2. namespace App\Module;
  3. use Maatwebsite\Excel\Concerns\ToArray;
  4. class BillImport implements ToArray
  5. {
  6. public function Array(Array $tables)
  7. {
  8. return $tables;
  9. }
  10. }