Skip to content

Instantly share code, notes, and snippets.

View ralphjsmit's full-sized avatar

Ralph J. Smit ralphjsmit

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