LogisticService.php 201 B

12345678910111213
  1. <?php
  2. namespace App\Services;
  3. use App\Logistic;
  4. Class LogisticService
  5. {
  6. public function getSelection($column = ['id','name']){
  7. return Logistic::query()->select($column)->get();
  8. }
  9. }