aifst/laravel-messages

Messages package for Laravel 5.6 and up

Installs: 88

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/aifst/laravel-messages

2.0.9 2025-02-21 16:56 UTC

This package is auto-updated.

Last update: 2025-12-21 18:49:38 UTC


README

  1. You can install the package via composer:
composer require "aifst/laravel-messages:^1.0.0"
  1. Optional: The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php file:
'providers' => [
    // ...
    Aifst\MessagesServiceProvider::class,
];
  1. You should publish the migration and the config/messages.php config file with:
php artisan vendor:publish --provider="Aifst\MessagesServiceProvider"