n0izestr3am / license-client
"License/Serial for web apllication"
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: ^7.2|^8.0
- ext-json: *
- ixudra/curl: 6.*
- laravel/framework: ^6.0|^8.0
README
Aplikasi licence dan Payment Reminder untuk Internal Klien GTDS
This package based on app-license-client for Laravel package.
composer require n0izestr3am/license-client
php artisan migrate --path=vendor/n0izestr3am/license-client/migrations
php artisan db:seed --class=gtdsClientsSeeder
Laravel Setup
Add to config/app.php
'providers' => [
....
n0izestr3am\AppLicenseClient\AppLicenseClientServiceProvider::class,
];
Add to config/app.php
'aliases' => [
....
'ALC' => n0izestr3am\AppLicenseClient\Facades\AppLicenseClient::class,
],
Publish Vendor
php artisan vendor:publish --tag=app-license-client
Config File
config/n0izestr3am/app-license-client.php
Implementasi Middleware di route
Route::middleware('expired')->get('/example','TestController@index');
Implementasi Notif di Dashboard
@include('vendor.client.notif')