ShopService.php 285 B

12345678910111213141516
  1. <?php
  2. namespace App\Services;
  3. use App\Shop;
  4. Class ShopService
  5. {
  6. function firstOrCreate(array $param, array $values = null){
  7. $shop = Shop::query();
  8. if ($values) return $shop->firstOrCreate($param,$values);
  9. return $shop->firstOrCreate($param);
  10. }
  11. }