PHP code example of scriptoshi / livewire-telegram-auth
1. Go to this page and download the library: Download scriptoshi/livewire-telegram-auth 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/ */
scriptoshi / livewire-telegram-auth example snippets
'telegram' => [
'telegramBotToken' => env('TELEGRAM_BOT_TOKEN'),
'profile_photo_disk' => 'public', // Storage disk for profile photos
],
namespace App\Livewire;
use Scriptoshi\LivewireTelegramAuth\Components\TelegramLogin as BaseTelegramLogin;
class CustomTelegramLogin extends BaseTelegramLogin
{
protected function register($udata)
{
// Your custom registration logic here
// ...
// Call parent method or implement your own logic
return parent::register($udata);
}
}