LogisticService.php 143 B

12345678910111213
  1. <?php
  2. namespace App\Services;
  3. use App\Logistic;
  4. Class LogisticService
  5. {
  6. public function get(){
  7. return Logistic::get();
  8. }
  9. }