Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/owowagency/laravel-gossip
- Owner: owowagency
- License: mit
- Created: 2020-12-04T08:29:00.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-12T13:06:55.000Z (almost 2 years ago)
- Last Synced: 2024-12-19T21:50:11.909Z (20 days ago)
- Language: PHP
- Homepage:
- Size: 146 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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