Voucher for laravel boilerplate

v0.11.0 2023-10-09 06:27 UTC

README

Installation

You can install the package via composer:

composer require HalcyonLaravelBoilerplate/vouchers

You can publish and run the migrations with:

php artisan vendor:publish --provider="HalcyonLaravelBoilerplate\Vouchers\VouchersServiceProvider" --tag="migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --provider="HalcyonLaravelBoilerplate\Vouchers\VouchersServiceProvider" --tag="config"

This is the contents of the published config file:

return [
];

Usage

$vouchers = new HalcyonLaravelBoilerplate\Vouchers();
echo $vouchers->echoPhrase('Hello, HalcyonLaravelBoilerplate!');

Testing

vendor/bin/phpunit

Changelog

Please see CHANGELOG for more information on what has changed recently.