Looking to hire Laravel developers? Try LaraJobs

laravel-messages maintained by aifst

Description
Messages package for Laravel 5.6 and up
Last update
2026/06/16 11:13 (dev-master)
License
Downloads
92

Comments
comments powered by Disqus

Installation

  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"