PHP code example of rc1021 / laravel-admin-line-binder

1. Go to this page and download the library: Download rc1021/laravel-admin-line-binder library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

rc1021 / laravel-admin-line-binder example snippets


Rc1021\LaravelAdmin\ServiceProvider::class,

'line' => [
    'client_id' => env('LINE_NOTIFY_CLIENT_ID', ''),
    'client_secret' => env('LINE_NOTIFY_SECRET', ''),
],

protected function settingForm()
{
    $form = parent::settingForm();
    $form->linenotify();
    return $form;
}

currentLineNotifyToken();

lineNotifyBinderUrl();

lineNotifyRevokeUrl();
shell
php artisan vendor:publish --provider="Rc1021\LaravelAdmin\ServiceProvider"
shell
php artisan migrate