WaybillPriceModelService.php 189 B

12345678910111213
  1. <?php
  2. namespace App\Services;
  3. use App\WaybillPriceModel;
  4. Class WaybillPriceModelService
  5. {
  6. public function find($id){
  7. return WaybillPriceModel::query()->find($id);
  8. }
  9. }