Skip to content

Instantly share code, notes, and snippets.

View kura1420's full-sized avatar
🎯
Focusing

Abdul Syakur kura1420

🎯
Focusing
View GitHub Profile
@kura1420
kura1420 / BlastMessageJob.php
Last active July 4, 2025 16:59
Laravel Blast Message
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Telegram\Bot\Laravel\Facades\Telegram;
@kura1420
kura1420 / CustomerProfileImport.php
Created October 7, 2025 03:30
Laravel Excel Impot Progress Bar and Output File If Data Cannot Insert
<?php
namespace App\Imports;
use App\Models\CustomerProfile;
use App\Models\Kota;
use Maatwebsite\Excel\Concerns\Importable;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithHeadingRow;
use Maatwebsite\Excel\Concerns\WithProgressBar;
@kura1420
kura1420 / BusQueueCommand.php
Created November 13, 2025 08:38
Laravel Queue Bus
<?php
namespace App\Console\Commands;
use App\Jobs\SendMessageJob;
use App\Models\User;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Bus;
class BusQueueCommand extends Command