We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think that total tricks count shows wrong number in user public profile view. At line 24 in app views/user/public.blade.php file,
app views/user/public.blade.php
<tr> <th>Total tricks:</th> <td>{{ count($tricks) }}</td> </tr>
It shows not total tricks number but tricks count in one page. I think it should be changed as follows.
<tr> <th>Total tricks:</th> <td>{{ $tricks->getTotal() }}</td> </tr>
The similar bug appears in the next Last trick. It shows last posting date in one page, but I have no good idea to fix this bug.
Last trick
<tr> <th width="140">Last trick:</th> <td>{{ $user->lastActivity($tricks) }}</t </tr>
I hope this will help your coding.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think that total tricks count shows wrong number in user public profile view. At line 24 in
app views/user/public.blade.php
file,It shows not total tricks number but tricks count in one page. I think it should be changed as follows.
The similar bug appears in the next
Last trick
. It shows last posting date in one page, but I have no good idea to fix this bug.I hope this will help your coding.
The text was updated successfully, but these errors were encountered: