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
The print button dont print the footers in the table.
<table class="table table-bordered table-condensed table-striped"> @php ($flag = true) @foreach($data as $row) @if ($row == reset($data) && $flag) <tr> @foreach($row as $key => $value) <th>{!! $key !!}</th> @endforeach @php ($flag = false) </tr> @endif <tr> @foreach($row as $key => $value) @if(is_string($value) || is_numeric($value)) <td>{!! $value !!}</td> @else <td></td> @endif @endforeach </tr> @endforeach </table>
Thats the generated table, without
The text was updated successfully, but these errors were encountered:
@d-arken good catch. Tagging for enhancement. If you can, please do not hesitate to submit a PR. Thanks!
Sorry, something went wrong.
No branches or pull requests
Summary of problem or feature request
The print button dont print the footers in the table.
Code snippet of problem
Thats the generated table, without
tag and without footer data.System details
The text was updated successfully, but these errors were encountered: