103 lines
2.0 KiB
PHP
103 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
abstract class BaseRepository
|
|
{
|
|
/**
|
|
* @var Model
|
|
*/
|
|
protected $model;
|
|
|
|
/**
|
|
* BaseRepository constructor.
|
|
*/
|
|
public function __construct(Model $model)
|
|
{
|
|
$this->model = $model;
|
|
}
|
|
|
|
/**
|
|
* Get all records.
|
|
*/
|
|
public function all(array $columns = ['*']): Collection
|
|
{
|
|
return $this->model->all($columns);
|
|
}
|
|
|
|
/**
|
|
* Find a record by ID.
|
|
*/
|
|
public function find(int|string $id, array $columns = ['*']): ?Model
|
|
{
|
|
return $this->model->find($id, $columns);
|
|
}
|
|
|
|
/**
|
|
* Find a record by ID or throw an exception.
|
|
*/
|
|
public function findOrFail(int|string $id, array $columns = ['*']): Model
|
|
{
|
|
return $this->model->findOrFail($id, $columns);
|
|
}
|
|
|
|
/**
|
|
* Create a new record.
|
|
*/
|
|
public function create(array $data): Model
|
|
{
|
|
return $this->model->create($data);
|
|
}
|
|
|
|
/**
|
|
* Update an existing record.
|
|
*/
|
|
public function update(int|string $id, array $data): bool
|
|
{
|
|
$model = $this->find($id);
|
|
|
|
if ($model) {
|
|
return $model->update($data);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Delete a record by ID.
|
|
*/
|
|
public function delete(int|string $id): bool
|
|
{
|
|
$model = $this->find($id);
|
|
|
|
if ($model) {
|
|
return $model->delete();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Paginate records.
|
|
*/
|
|
public function paginate(int $perPage = 15, array $columns = ['*']): LengthAwarePaginator
|
|
{
|
|
return $this->model->paginate($perPage, $columns);
|
|
}
|
|
|
|
/**
|
|
* Get query builder.
|
|
*
|
|
* @return Builder
|
|
*/
|
|
public function query()
|
|
{
|
|
return $this->model->newQuery();
|
|
}
|
|
}
|