Skip to content

Instantly share code, notes, and snippets.

View Shigeki1120's full-sized avatar
🎯
Focusing

Shigeki Shigeki1120

🎯
Focusing
View GitHub Profile
@thebrubaker
thebrubaker / .env
Last active March 4, 2025 23:54
Laravel Passport: SPA Frontend Authentication
# Added to the bottom of my file
PROXY_OAUTH_CLIENT_ID=2
PROXY_OAUTH_CLIENT_SECRET=SECRET-GENERATED-KEY-HERE
PROXY_OAUTH_GRANT_TYPE=password
@simonhamp
simonhamp / AppServiceProvider.php
Last active May 2, 2025 14:33
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()