Package Data | |
---|---|
Maintainer Username: | SamKitano |
Maintainer Contact: | sam.kitano@gmail.com (Sam Kitano) |
Package Create Date: | 2016-07-04 |
Package Last Update: | 2016-07-04 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:17:20 |
Package Statistics | |
---|---|
Total Downloads: | 35 |
Monthly Downloads: | 3 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
An implementation of this awesome Blog article by Bosnadev.
Based on Bosnadev/Repositories with some minor changes, mostly PSR-2 compliance.
You should, by all means, read the article and work it out for yourself, as the Repository Pattern is a very important concept to properly implement a data access layer for any medium/large scale application.
As stated above, this package is a personal implementation of Bosniadev's for my projects and testings.
Thus, for the time being, you most definitely should use that package instead of this one, and follow it's instructions.
composer require "samkitano/repository"
<?php namespace App\Repositories;
use Kitano\Repository\Contracts\RepositoryInterface;
use Kitano\Repository\Eloquent\Repository;
class UseRepository extends Repository {
public function model() {
return 'App\User';
}
}
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class User extends Model {
protected $primaryKey = 'user_id';
protected $table = 'users';
protected $casts = [
"verified" => 'boolean'
];
}
<?php
namespace App\Http\Controllers;
use App\Repositories\UsersRepository as User;
class UsersController extends Controller {
protected $user;
public function __construct(User $user) {
$this->user = $user;
}
public function index() {
return response()->json($this->user->all());
}
}
The following methods are available:
public function all($columns = array('*'))
public function lists($value, $key = null)
public function paginate($perPage = 1, $columns = array('*'));
public function create(array $data)
public function update(array $data, $id, $attribute = "id")
public function delete($id)
public function find($id, $columns = array('*'))
public function findBy($field, $value, $columns = array('*'))
public function findAllBy($field, $value, $columns = array('*'))
public function findWhere($where, $columns = array('*'))
public function apply($model, Repository $repository)
Create a new user in repository:
$this->user->create($input);
Update existing user:
$this->user->update($input, $user_id);
Delete user:
$this->user->delete($id);
Find user by user_id;
$this->user->find($id);
you can also chose what columns to fetch:
$this->user->find($id, ['name', 'email', 'created_at']);
Get a single row by a single column criteria.
$this->user->findBy('email', $email);
Or you can get all rows by a single column criteria.
$this->user->findAllBy('active', true);
Get all results by multiple fields
$this->user->findWhere([
'active' => true,
['created_at', '>', Carbon::yesterday()]
]);
<?php
namespace App\Repositories\Criteria\Users;
use Carbon\Carbon;
use Kitano\Repository\Criteria\Criteria;
use Kitano\Repository\Contracts\RepositoryInterface as Repository;
class RegisteredToday extends Criteria {
/**
* @param $model
* @param RepositoryInterface $repository
* @return mixed
*/
public function apply($model, Repository $repository)
{
$yesterday = Carbon::yesterday();
$model = $model->where('created_at', '>', $yesterday);
return $model;
}
}
<?php
namespace App\Http\Controllers;
use App\Repositories\Criteria\Users\RegisteredToday;
use App\Repositories\UsersRepository as User;
class UsersController extends Controller {
/**
* @var User
*/
protected $user;
public function __construct(User $user) {
$this->user = $user;
}
public function index() {
$this->user->addCriteria(new RegisteredToday());
return response()->json($this->user->all());
}
}
This great package by @andersao. Here is another package I used as reference.
This article by Shawn McCool
This Jeffrey Way's lesson from Laracasts