Merge pull request #3661 from devansh-webkul/layout_center_issue

Fixed no records founds text in downloadable product section of customer should display in centre, in mobile view #3637
This commit is contained in:
Jitendra Singh 2020-08-05 15:41:41 +05:30 committed by GitHub
commit 028cd1050b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -59,7 +59,7 @@
data-method="{{ $action['method'] }}"
data-action="{{ route($action['route'], $record->{$index}) }}"
data-token="{{ csrf_token() }}"
@if (isset($action['target']))
target="{{ $action['target'] }}"
@endif
@ -78,7 +78,9 @@
@endforeach
@else
<tr>
<td colspan="10" style="text-align: center;">{{ $norecords }}</td>
<td colspan="10">
<p style="text-align: center;">{{ $norecords }}</p>
</td>
</tr>
@endif
</tbody>