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);
    }
}

Livewire::component('custom-telegram-login', CustomTelegramLogin::class);
bash
php artisan vendor:publish --tag=telegram-auth-migrations
php artisan migrate
css
@import "tailwindcss";

@source "../views";
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../vendor/scriptoshi/livewire-telegram-auth/resources/views/**/*.blade.php';

/* Rest of your CSS file */
bash
php artisan vendor:publish --tag=telegram-auth-views