Looking to hire Laravel developers? Try LaraJobs
This package is not available.

laravel-base-repository maintained by imjonos

Description
Laravel base repository
Last update
2026/04/21 20:38 (dev-master)
License
Downloads
835

Comments
comments powered by Disqus

📦 Laravel Base Repository

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.