Files
online.tbbank.gov.tm-larave…/app/Repos/Order/Loan/BranchRepo.php
2023-11-24 18:31:58 +05:00

18 lines
274 B
PHP

<?php
namespace App\Repos\Order\Loan;
use App\Models\Branch\Branch;
use Illuminate\Support\Collection;
class BranchRepo
{
/**
* Branch values
*/
public static function values(): Collection|array
{
return Branch::pluck('name', 'id');
}
}