Talal_Mirza
Talal_Mirza

Reputation: 25

Send Slack Notifications With Laravel 5.4

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

Answers (1)

dparoli
dparoli

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

Related Questions