This commit is contained in:
2023-11-24 18:31:58 +05:00
parent 35c6e580ca
commit 206582e195
7 changed files with 272 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
<?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');
}
}