Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/owowagency/laravel-gossip

A package of chatting features for the Laravel framework.
https://github.com/owowagency/laravel-gossip

Last synced: 11 days ago
JSON representation

A package of chatting features for the Laravel framework.

Awesome Lists containing this project

README

        

# Gossip

![Logo](https://i.imgur.com/cYnIr1B.png)

An opinionated package of chatting features for the Laravel framework.

# Installation

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

```bash
composer require owowagency/gossip
```

# Setup

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

```bash
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:

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

## Migrations

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

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

## Routes

## Policies

TODO: Also inform about the roles and permissions.

# Usage