owowagency/laravel-gossip

There is no license information available for the latest version (0.1.0) of this package.

A package of conversation features for the Laravel framework.

0.1.0 2023-01-12 13:05 UTC

This package is auto-updated.

Last update: 2024-04-12 15:39:35 UTC


README

Logo

An opinionated package of chatting features for the Laravel framework.

Installation

Installing this package can be done easily via the following Artisan command.

composer require owowagency/gossip

Setup

To install all the vendor files you can run the following command.

php artisan vendor:publish --provider="OwowAgency\Gossip\GossipServiceProvider"

This will copy all the vendor files, including configuration, migrations, resources and policies. If you wish to only install certain files you can use the command described in the next paragraphs.

Config

If you wish to publish the configuration file, you can use the following command:

php artisan vendor:publish --provider="OwowAgency\Gossip\GossipServiceProvider" --tag=config

Migrations

If you wish to publish the migrations, you can use the following command:

php artisan vendor:publish --provider="OwowAgency\Gossip\GossipServiceProvider" --tag=migrations

Routes

Policies

TODO: Also inform about the roles and permissions.

Usage