Skip to content

Instantly share code, notes, and snippets.

View egyjs's full-sized avatar
:shipit:
the perfect man for the job

AbdulRahman El-zahaby egyjs

:shipit:
the perfect man for the job
View GitHub Profile
@egyjs
egyjs / TranslationImport.php
Created February 2, 2025 15:21
Laravel Import translations from lang files to database
<?php
// Laravel/app/Console/Commands/TranslationImport.php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Arr;
class TranslationImport extends Command
{
@egyjs
egyjs / WhatsappChannel.php
Created March 5, 2025 23:17
Twilio Whatsapp Channel notifications channel for Laravel
<?php
// app/Broadcasting/WhatsappChannel.php
namespace App\Broadcasting;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\Log;
use Twilio\Rest\Client;
class WhatsappChannel
{