Skip to content

Instantly share code, notes, and snippets.

View eighty9nine's full-sized avatar

Eighty Nine eighty9nine

View GitHub Profile
@eighty9nine
eighty9nine / BenchmarkHelpersCommand
Created July 25, 2025 12:09
Benchmarking Laravel helpers
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Benchmark;
use Illuminate\Support\Str;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
@eighty9nine
eighty9nine / MyFirstReport.php
Created December 31, 2023 10:41
A sample quick start report
<?php
namespace App\Filament\Reports;
use App\Models\User;
use EightyNine\Reports\Components\Image;
use EightyNine\Reports\Components\Text;
use EightyNine\Reports\Components\VerticalSpace;
use EightyNine\Reports\Report;
use EightyNine\Reports\Components\Body;