mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
15 lines
237 B
PHP
15 lines
237 B
PHP
<?php
|
|
|
|
namespace App\Classes\Excel\Import;
|
|
|
|
use App\Models\Order;
|
|
use Maatwebsite\Excel\Concerns\FromCollection;
|
|
|
|
class OrdersExport implements FromCollection
|
|
{
|
|
|
|
public function collection()
|
|
{
|
|
return Order::all();
|
|
}
|
|
} |