generated from red-explosion/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a130f79
commit e472d26
Showing
3 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace RedExplosion\Sqids\Mixins; | ||
|
||
use Closure; | ||
use Illuminate\Database\Eloquent\Builder; | ||
use RedExplosion\Sqids\Sqids; | ||
|
||
/** @mixin Builder */ | ||
class WhereSqidMixin | ||
{ | ||
public function whereSqid(): Closure | ||
{ | ||
return fn($id) => $this->whereKey(id: Sqids::decodeId(id: $id)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters