Skip to content

Instantly share code, notes, and snippets.

View humayunjavaid's full-sized avatar
🎯
Focusing

Humayun Javed humayunjavaid

🎯
Focusing
View GitHub Profile
@ewilan-riviere
ewilan-riviere / UploadFile.php
Last active September 14, 2024 13:08
Upload file Blade component for Laravel with FilePond, ready for Livewire.
<?php
namespace App\View\Components\Field;
use Illuminate\View\Component;
use Illuminate\View\View;
class UploadFile extends Component
{
public function __construct(
@simonhamp
simonhamp / AppServiceProvider.php
Last active March 4, 2025 23:55
A pageable Collection implementation for Laravel
<?php
namespace App\Providers;
use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
class AppServiceProvider extends ServiceProvider
{
public function boot()