https://docs.laravel-excel.com/3.1/exports/collection.htmlПробую библиотеку ларавель-ексель
<?php
namespace App\Exports;
use App\Models\Contact;
use Illuminate\Contracts\Support\Responsable;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\FromCollection;
class ContactExport implements FromCollection
{
public function collection()
{
return new Collection([
[1, 2, 3],
[4, 5, 6]
]);
}
}
Class "App\Exports\Collection" not found
подскажите плис, где ошибка