<div class="col-md-<?php echo $_SESSION['pan_dimensione'] ?>"> <div class="box box-info"> <div class="box-header with-border"> <h3 class="box-title">Ultime 10 Fatture</h3> <div class="box-tools pull-right"> <button class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button> <button class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button> </div> </div><!-- /.box-header --> <div class="box-body"> <div class="table-responsive"> <table class="table no-margin"> <thead> <tr> <th>N°</th> <th>Documento</th> <th>Ragione Sociale</th> <th>Data</th> <th class='text-right'>Totale</th> </tr> </thead> <tbody> <?php ultime_fatture(); ?> </tbody> </table> </div> </div> </div> </div>