123456789101112131415161718192021 |
- <?php
- namespace App\Repositories\Eloquent;
- use App\Contracts\Repositories\ShopWalletRepository;
- use App\Models\ShopWallet;
- class ShopWalletRepositoryEloquent extends BaseRepository implements ShopWalletRepository
- {
- public function model()
- {
- // TODO: Implement model() method.
- return ShopWallet::class;
- }
- public function validator()
- {
- return null;
- }
- }
|