Skip to content

Instantly share code, notes, and snippets.

View VuongTran21's full-sized avatar
🎯
Focusing

vuongtran VuongTran21

🎯
Focusing
View GitHub Profile
@djaiss
djaiss / progress_bar_migration_laravel.php
Last active May 4, 2024 15:03
Laravel: Use progress bars in migrations
<?php
use Symfony\Component\Console\Helper\ProgressBar;
use Symfony\Component\Console\Output\ConsoleOutput;
class DoSomething extends Migration
{
public function up()
{
$output = new ConsoleOutput();