styling
This commit is contained in:
		@@ -1,19 +1,19 @@
 | 
			
		||||
<div class="table-responsive overflow-auto mt-4">
 | 
			
		||||
    <table class="table align-items-center rp-border-collapse">
 | 
			
		||||
        @include($class->views['table.header'])
 | 
			
		||||
            <tbody>
 | 
			
		||||
                @if (!empty($class->row_values[$table]))
 | 
			
		||||
                    @foreach($class->row_values[$table] as $id => $rows)
 | 
			
		||||
                        @include($class->views['table.rows'])
 | 
			
		||||
                    @endforeach
 | 
			
		||||
                @else
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <td colspan="{{ count($class->dates) + 2 }}">
 | 
			
		||||
                            <h5 class="text-center pl-0">{{ trans('general.no_records') }}</h5>
 | 
			
		||||
                        </td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                @endif
 | 
			
		||||
            </tbody>
 | 
			
		||||
        <tbody>
 | 
			
		||||
            @if (!empty($class->row_values[$table]))
 | 
			
		||||
                @foreach($class->row_values[$table] as $id => $rows)
 | 
			
		||||
                    @include($class->views['table.rows'])
 | 
			
		||||
                @endforeach
 | 
			
		||||
            @else
 | 
			
		||||
                <tr>
 | 
			
		||||
                    <td colspan="{{ count($class->dates) + 2 }}">
 | 
			
		||||
                        <h5 class="text-center pl-0">{{ trans('general.no_records') }}</h5>
 | 
			
		||||
                    </td>
 | 
			
		||||
                </tr>
 | 
			
		||||
            @endif
 | 
			
		||||
        </tbody>
 | 
			
		||||
        @include($class->views['table.footer'])
 | 
			
		||||
    </table>
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user