use App\Servives\Notification\Notification;
use App\User;
use App\Mail\TopicCreated;
Route::get('/', function () {
$notification = resolve(Notification::class);
$notification->sendEmail(User::find(1), new TopicCreated);
});
این کد هایی هستش که در فایل web.php نوشتم طبق ویدئوی آموزشی و حتی با نگه داشتن کلید Ctrl و کلیک کردن بر روی کلاس Notification به کلاس مربوطه فرستاده میشوم اما در هنگام اجرای برنامه خطای زیر رو نشون میده
ReflectionException (-1)
Class App\Servives\Notification\Notification does not exist
لطفا زاهنمایی بفرمایید که برای چی این اتفاق میافته.
با تشکر