Best laravel framework open-source packages.

Updated 3 months ago

Laravel Reactions Example

This example repository shows, how to implement social reactions in Laravel application using 📦 laravel-reactions package.

Video Tutorial

▶️ Laravel Reactions Tutorial

Setup

Download or clone this repo

$ git clone https://github.com/laravel-reactions-example.git

Install all dependency required by Laravel.

$ composer install

Generate app key, configure .env file and do migration.

# create copy of .env
$ cp .env.example .env

# create Laravel key
$ php artisan key:generate

Next, add your database credentials in .env file and then run migrations.

# run migration
$ php artisan migrate --seed