-
-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to locate a class or view for component [notify-messages]. #115
Comments
I've just deleted |
I am having this same issue. Using
This is on Laravel 10 using v2.4. Was working fine on Laravel 8 & 9. |
@loglinn05 Switching to using Would indicate an issue with the implementation of Laravel Blade Components I suppose. Hope that helps you. |
Same issue, was working well with Laravel 9 and then I did composer update and got the same error |
y'all can use |
first i imported here is sample code <!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
<!-- Scripts -->
@notifyCss
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body class="font-sans antialiased">
<div class="min-h-screen bg-gray-100">
@include('layouts.navigation')
@include('notify::components.notify')
<!-- Page Heading -->
@if (isset($header))
<header class="bg-white shadow">
<div class="px-4 py-6 mx-auto max-w-7xl sm:px-6 lg:px-8">
{{ $header }}
</div>
</header>
@endif
<!-- Page Content -->
<main>
{{ $slot }}
</main>
</div>
@notifyJs
</body>
</html>
|
Environment: Laravel 10 (with AdminLTE).
I've added the
Mckenziearts\Notify\LaravelNotifyServiceProvider::class
service provider toconfig/app.php
, published the config file and assets and executedcomposer dump-autoload
. Here is my layout:And here I'm calling
notify()
in my controller:This is what I get:
https://flareapp.io/share/DPyrJl47#F67
Thanks in advance!
The text was updated successfully, but these errors were encountered: