在 Laravel Excel 中未找到特征 'Exportable'?

Trait 'Exportable' not found in Laravel Excel?

我有进口:

namespace App\Http\Controllers;

use Maatwebsite\Excel\Concerns\FromQuery;
use Maatwebsite\Excel\Concerns\WithTitle;
use Maatwebsite\Excel\Facades\Excel;
use Exportable;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;

和class:

class ArchivingController extends Controller implements WithMultipleSheets
{

    use Exportable;

}

为什么我收到消息:

Trait 'Exportable' not found

use Exportable;改为

use Maatwebsite\Excel\Concerns\Exportable;

你需要它在别名中加载一个别名 app.php 以将其用作

use Exportable;