18 lines
298 B
Plaintext
18 lines
298 B
Plaintext
|
|
<?php
|
||
|
|
|
||
|
|
namespace DummyNamespace;
|
||
|
|
|
||
|
|
use DummyFullModelClass;
|
||
|
|
use Maatwebsite\Excel\Concerns\FromCollection;
|
||
|
|
|
||
|
|
class DummyClass implements FromCollection
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return \Illuminate\Support\Collection
|
||
|
|
*/
|
||
|
|
public function collection()
|
||
|
|
{
|
||
|
|
return DummyModelClass::all();
|
||
|
|
}
|
||
|
|
}
|