View [cart] not found. {"exception":"[object] (InvalidArgumentException(code: 0): View [cart] not found. at C:\\wamp\\www\\projects\\BBT\\vendor\\laravel\\framework\\src\\Illuminate\\View\\FileViewFinder.php:137)
我創建了一個notification& 嘗試將其cart.blade.php用作郵件模板,如下所示。但是我收到了上述錯誤。我已經嘗試通過此鏈接清除快取: https://stackoverflow.com/questions/17913929/laravel-view-not-found-exception
namespace App\Notifications;
class CartExpiryNotification extends Notification
{
public function toMail($notifiable)
{
return (new MailMessage)
->view('cart', ['cartTemplate' => 'cartTemplate']);
}
}
購物車.blade.php
{{$cartTemplate}}
cart.blade.php存在于路徑中C:\wamp\www\projects\BBT\vendor\laravel\framework\src\Illuminate\Notifications\resources\views\cart.blade.php。
uj5u.com熱心網友回復:
您的視圖應位于以下根目錄中
your_project_name/app/resources/views/cart.blade.php
轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/408105.html
標籤:
