|
@@ -38,7 +38,9 @@ class WalletController extends Controller
|
|
|
*/
|
|
|
public function records()
|
|
|
{
|
|
|
- return $this->service->getWalletRecords(Auth::user()->id, request('per_page', 10));
|
|
|
+ return $this->success(
|
|
|
+ $this->service->getWalletRecords(Auth::user()->id, request('per_page', 10))
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
/**
|