123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace App\Repositories;
- use App\Models\WalletLog;
- class WalletLogRepository extends BaseRepository
- {
- public function __construct(WalletLog $walletLog)
- {
- $this->model = $walletLog;
- }
- public function byUserIdGetWalletLog($user_id){
- $data = $this->model
- ->where('user_id',$user_id)
- ->whereIn('type',WalletLog::$userShowTypeMaps)
- ->orderByDesc('id')
- ->paginate();
- return $data;
- }
- }
|