excel upload old bookings

This commit is contained in:
Omair Saleh
2018-12-31 02:28:48 +08:00
parent 03b4691045
commit 863b527fc3
7 changed files with 188 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace App\Imports;
use Maatwebsite\Excel\Concerns\ToModel;
class BookingImport implements ToModel
{
/**
* @param array $row
*
* @return array
*/
public function model(array $row)
{
return [
//
];
}
}