This commit is contained in:
2023-11-28 12:40:49 +05:00
parent b45cec0200
commit dab7cc0069
16 changed files with 215 additions and 58 deletions

View File

@@ -0,0 +1,60 @@
<?php
namespace App\Repos\Branch;
use App\Models\Branch\Branch;
use Illuminate\Support\Collection;
class BranchRepo
{
/**
* Model
*
* @var App\Models\Branch\Branch
*/
protected $model;
/**
* New Branch Repo
*/
public function __construct()
{
$this->model = Branch::class;
$this->query = $this->model::query();
$this->queryActive();
}
/**
* Query active records
*/
public function queryActive(): self
{
$this->query->where('active', true);
return $this;
}
/**
* "Make" static sugar
*/
public static function make(): self
{
return new self();
}
/**
* Query
*/
public function query()
{
return $this->query;
}
/**
* Branch values
*/
public static function values(): Collection|array
{
return static::make()->query()->pluck('name', 'id');
}
}