imjonos / laravel-base-repository
Laravel base repository
Requires
- doctrine/dbal: *
- illuminate/support: ~5|~6|~7|~8|~9|~10|~11|~12
This package is auto-updated.
Last update: 2025-09-17 11:31:11 UTC
README
A generic base repository class for Laravel projects that provides a clean and consistent way to interact with Eloquent models. It simplifies CRUD operations and makes your code more maintainable, testable, and scalable.
๐งฉ Overview
This package provides an abstract EloquentRepository
class that implements the EloquentRepositoryInterface
. It wraps common model interactions into reusable methods, making it easier to manage data access logic in your Laravel applications.
๐ Installation
Install the package via Composer:
composer require imjonos/laravel-base-repository
โ Usage
1. Create Your Repository Class
Create a new repository class that extends EloquentRepository
and specifies the model class:
namespace App\Repositories; use App\Models\Order; use Nos\BaseRepository\EloquentRepository; class OrderRepository extends EloquentRepository { protected string $class = Order::class; }
2. Use the Repository in a Controller or Service
Inject the repository and use its methods:
namespace App\Http\Controllers; use App\Repositories\OrderRepository; use Illuminate\Http\Request; class OrderController extends Controller { protected $repository; public function __construct(OrderRepository $repository) { $this->repository = $repository; } public function index() { $orders = $this->repository->all(); return view('orders.index', compact('orders')); } public function store(Request $request) { $order = $this->repository->create($request->all()); return redirect()->route('orders.show', $order->id); } }
๐ง Available Methods
Method | Description |
---|---|
all() |
Get all records |
count() |
Count all records |
create(array $data) |
Create a new record |
update(int $id, array $data) |
Update a record by ID |
exists(int $id) |
Check if a record exists |
find(int $id) |
Find a record by ID (throws exception if not found) |
delete(int $id) |
Delete a record by ID |
query() |
Return a query builder instance for custom queries |
๐ Project Structure
vendor/
โโโ imjonos/
โโโ laravel-base-repository/
โโโ src/
โ โโโ EloquentRepository.php
โโโ interfaces/
โโโ EloquentRepositoryInterface.php
๐ฆ Requirements
- PHP 8.0+
- Laravel 9+
๐งช Testing
You can easily mock the repository interface in your tests, which helps keep your application logic decoupled from the database and improves test coverage.
๐ Contributing
Please see contributing.md for details and a todolist.
๐ License
This package is open-sourced software licensed under the MIT license. Please see the license file for more information.