ShopWalletRepositoryEloquent.php 404 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Repositories\Eloquent;
  3. use App\Contracts\Repositories\ShopWalletRepository;
  4. use App\Models\ShopWallet;
  5. class ShopWalletRepositoryEloquent extends BaseRepository implements ShopWalletRepository
  6. {
  7. public function model()
  8. {
  9. // TODO: Implement model() method.
  10. return ShopWallet::class;
  11. }
  12. public function validator()
  13. {
  14. return null;
  15. }
  16. }