Reputation: 25
I followed the official laracast 5.3 tutorial to send a slack notification from Laravel (I'm using laravel 5.4). But upon following all the procedures when I hit the url I get the following error. I haven't touched the Connection.php file at all since making the project. Here is the tutorial link.
Screen shot of error:
Upvotes: 0
Views: 947
Reputation: 9161
You have to configure your application with a database connection and make your migrations.
The error is explicit: you missed a database connection and probably a user table.
Before implementing notifications you have to build a fully functional laravel app with the needed tables (users at minimum), and a working authentication, you can find detailed info in the laravel docs.
Upvotes: 1