我有一個控制器,監聽新的計劃創建,並通過ajax將結果發送回視圖。在它的內部,我想添加一個通知來發送電子郵件給用戶,因爲在特定的日期和時間缺乏資源,無法完成時間表。如何解決在laravel中找不到類'App Http Controllers Notification'?
的問題是,我得到的錯誤如下:
Class 'App\Http\Controllers\Notification' not found in /laravel/app/Http/Controllers/DadosAgendamentoController.php on line 89
的文件夾結構是這樣的:
-app
-Http
-Controllers
DadosAgendamentoController.php
-Notifications
AgendamentoPendente.php
DadosAgendamentoController.php頭代碼:
namespace App\Http\Controllers;
use Input;
use Request;
use App\Servicos;
use App\Disponibilidades;
use App\Estabelecimentos;
use App\HorariosEstabelecimento;
use App\Agendamento;
use App\User;
use App\Notifications\AgendamentoPendente;
線88和89:
$user = User::where('id',1)->get();
Notification::send($user, new AgendamentoPendente(1));
海槽我的控制,我可以訪問上述所有的類,但不是AgendamentoPendente
我的目標是發送電子郵件做管理員,所以他可以提出一個新的日期和時間的客戶端時資源在期望的日期和時間不可用。
如何解決?我可以訪問這個控制器中的類嗎?怎麼樣?
請告訴我們'DadosAgendamentoController的第89行。php' –
我幾乎可以肯定你沒有導入'Notification'類。只需導入命名空間,它應該被修復。如果通知是一個外觀,只需要調用'\ Notification :: foo()' – felipsmartins
@AlexeyMezenin,我已經編輯了這個問題。 –