| 1234567891011121314 |
- <?php
- namespace App\Services;
- use App\OwnerStoragePriceModel;
- Class OwnerStoragePriceModelService
- {
- public function getSelection(array $columns = ["counting_type","using_type"], array $withs = [])
- {
- return OwnerStoragePriceModel::query()->select($columns)->with($withs)->get();
- }
- }
|