Download the PHP package herojhc/laravel-repository without Composer
On this page you can find all versions of the php package herojhc/laravel-repository. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download herojhc/laravel-repository
More information about herojhc/laravel-repository
Files in herojhc/laravel-repository
Package laravel-repository
Short Description Laravel Repository
License MIT
Homepage https://www.wfhtmc.com
Informations about the package laravel-repository
laravel-repository
- l5-repository simple
Installation
Composer
Execute the following command to get the latest version of the package:
Laravel
>= laravel5.5
ServiceProvider will be attached automatically
Other
In your config/app.php
add Herojhc\Repositories\Providers\RepositoryServiceProvider::class
to the end of the providers
array:
If Lumen
Publish Configuration
Methods
Herojhc\Repositories\Contracts\RepositoryInterface
- all($columns = array('*'))
- first($columns = array('*'))
- paginate($limit = null, $columns = ['*'])
- find($id, $columns = ['*'])
- findBy($field, $value, $columns = ['*'])
- findWhere(array $where, $columns = ['*'])
- findWhereIn($field, array $where, $columns = [*])
- findWhereNotIn($field, array $where, $columns = [*])
- create(array $attributes)
- update(array $attributes, $id)
- updateOrCreate(array $attributes, array $values = [])
- delete($id)
- deleteWhere(array $where)
- orderBy($column, $direction = 'asc');
- with(array $relations);
- has(string $relation);
- whereHas(string $relation, closure $closure);
- hidden(array $fields);
- visible(array $fields);
- scopeQuery(Closure $scope);
- getFieldsSearchable();
Herojhc\Repositories\Contracts\CriteriaInterface
- pushCriteria($criteria)
- popCriteria($criteria)
- getCriteria()
- getByCriteria(CriteriaInterface $criteria)
- skipCriteria($status = true)
- getFieldsSearchable()
Usage
Create a Model
Create your model normally, but it is important to define the attributes that can be filled from the input form data.
Create a Repository
Create a Criteria
Using the command
Criteria are a way to change the repository of the query by applying specific conditions according to your needs. You can add multiple Criteria in your repository.
Using the Criteria in a Controller
All versions of laravel-repository with dependencies
illuminate/http Version ~5.5|~6.0|~7.0
illuminate/config Version ~5.5|~6.0|~7.0
illuminate/support Version ~5.5|~6.0|~7.0
illuminate/database Version ~5.5|~6.0|~7.0
illuminate/filesystem Version ~5.5|~6.0|~7.0
illuminate/console Version ~5.5|~6.0|~7.0