Answer the question
In order to leave comments, you need to log in
What is the best way to organize notifications on laravel?
Guys, tell me what do you use to notify users in laravel sites?
I found this package , according to the description - I like it. All connected.
Controller code:
<?php
namespace App\Http\Controllers\Root;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Notify;
class HomeController extends Controller
{
public function test(){
notify()->info('Тест', 'Текст сообщения', 'smile-o');
dump(notify());
return view('root.home.test');
}
}
@include('notify::notify')
ok
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question