vaskiq / eloquent-light-repo
A lightweight repository pattern implementation for Laravel Eloquent models
dev-main
2025-03-08 20:52 UTC
Requires
- php: ^8.3
- illuminate/container: ^11.44|^12.0
- illuminate/database: ^11.44|^12.0
- illuminate/support: ^11.44|^12.0
- illuminate/translation: ^11.44|^12.0
Requires (Dev)
- laravel/pint: ^1.21
- mockery/mockery: ^1.6
- orchestra/testbench: ^9.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-laravel: ^2.3
README
A lightweight repository pattern implementation for Laravel Eloquent models.
Compatibility
- Laravel 11.x
- Laravel 12.x (Future support)
- PHP 8.3 or higher
Installation
You can install the package via composer:
composer require vaskiq/eloquent-light-repo
Usage
Create a Repository
Create a repository class for your model by extending the EloquentRepository
abstract class:
<?php declare(strict_types=1); namespace App\Repositories; use App\Models\User; use Vaskiq\EloquentLightRepo\Repositories\EloquentRepository; use Illuminate\Database\Eloquent\Model; class UserRepository extends EloquentRepository { public function __construct(User $model) { parent::__construct($model); } /** * Implement the all() method required by the interface */ public function all(): \Illuminate\Support\Collection { return $this->query()->get(); } }
Use the Repository
<?php declare(strict_types=1); namespace App\Http\Controllers; use App\Repositories\UserRepository; use Illuminate\Http\Request; class UserController extends Controller { public function __construct(private UserRepository $userRepository) { } public function index() { $users = $this->userRepository->all(); return view('users.index', compact('users')); } public function show($id) { $user = $this->userRepository->findOrFail($id); return view('users.show', compact('user')); } public function store(Request $request) { try { $user = $this->userRepository->create($request->validated()); return redirect()->route('users.show', $user->id); } catch (\Vaskiq\EloquentLightRepo\Exceptions\CreateException $e) { return back()->withErrors(['error' => 'Failed to create user']); } } public function update(Request $request, $id) { try { $user = $this->userRepository->update($id, $request->validated()); return redirect()->route('users.show', $user->id); } catch (\Vaskiq\EloquentLightRepo\Exceptions\UpdateException $e) { return back()->withErrors(['error' => 'Failed to update user']); } } public function destroy($id) { if ($this->userRepository->delete($id)) { return redirect()->route('users.index')->with('success', 'User deleted successfully'); } return back()->withErrors(['error' => 'User not found']); } }
Available Methods
find(int|string $id, array $columns = ['*']): ?Model
- Find a model by IDfindOrFail(int|string $id, array $columns = ['*']): Model
- Find a model by ID or throw an exceptionfindBy(array|Closure|Expression|null $conditions = null, ?Closure $queryModifier = null, array $columns = ['*']): Collection
- Find models by conditionsfindFirst(array|Closure|Expression|null $conditions = null, ?Closure $queryModifier = null, array $columns = ['*']): ?Model
- Find first model by conditionsfindFirstOrFail(array|Closure|Expression|null $conditions = null, ?Closure $queryModifier = null, array $columns = ['*']): Model
- Find first model by conditions or throw exceptionall(): Collection
- Get all models (Note: This method is defined in the interface but must be implemented in your repository class)create(array $data): Model
- Create a new modelupdate(int|string $id, array $data, array $options = []): ?Model
- Update a modeldelete(int|string $id): bool
- Delete a model by IDdeleteModel(Model $model): bool
- Delete a model instancedeleteBy(array|Closure|Expression|null $conditions = null, ?Closure $queryModifier = null): int
- Delete models by conditionschunk(int $count, Closure $callback, ?Closure $queryModifier = null): void
- Process models in chunksexists(array|Closure|Expression|null $conditions = null, ?Closure $queryModifier = null, bool $forceRaw = false): bool
- Check if models existcount(array|Closure|Expression|null $conditions = null, ?Closure $queryModifier = null, bool $forceRaw = false): int
- Count modelspluck(string $column, ?string $key = null, ?Closure $queryModifier = null, bool $forceRaw = false): Collection
- Get a collection of column valuesquery(): EloquentBuilder
- Get a query builder instanceraw(): QueryBuilder
- Get a raw query builder instancemodelClass(): string
- Get the model class namenew(): Model
- Create a new model instanceupdateOrCreate(array $attributes, array $values): Model
- Update or create a modelwithQueryCollection(?array &$collected = null): self
- Collect executed queries for debugging
Debugging
The package provides a method to collect and inspect executed queries:
$queries = []; $users = $userRepository->withQueryCollection($queries)->all(); // Now $queries contains all executed SQL queries with bindings and execution time foreach ($queries as $query) { echo "SQL: {$query['sql']}\n"; echo "Bindings: " . json_encode($query['bindings']) . "\n"; echo "Execution time: {$query['time']}\n"; }
Exceptions
The package provides the following exceptions:
CreateException
- Thrown when a model creation failsUpdateException
- Thrown when a model update fails
Example of handling exceptions:
try { $user = $this->userRepository->create($data); } catch (\Vaskiq\EloquentLightRepo\Exceptions\CreateException $e) { // Handle the exception $originalException = $e->getPrevious(); // Get the original exception if needed } try { $user = $this->userRepository->update($id, $data); } catch (\Vaskiq\EloquentLightRepo\Exceptions\UpdateException $e) { // Handle the exception $originalException = $e->getPrevious(); // Get the original exception if needed }
Testing
This package uses Pest PHP for testing. To run the tests:
composer test
For more information about testing, see the tests/README.md file.
License
The Apache License 2.0. Please see License File for more information.