WalletRepositoryEloquent.php 464 B

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