imjonos/laravel-base-repository

1.1.1 2025-09-17 10:58 UTC

This package is auto-updated.

Last update: 2025-09-17 11:31:11 UTC


README

Latest Version on Packagist
Total Downloads

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.