No Entry DisplayNEW
1.7.31.1 Minimal theme
Nice display of empty dataset
HIDE CODE
<?php
$xcrud = Xcrud::get_instance();
$xcrud->table('sample_data');
$xcrud->noentry_html('
<div class="text-center my-5">
<i class="fa fa-database fa-2x text-muted mb-3"></i>
<h4 class="text-muted">No Data Available</h4>
<p class="text-secondary">There are no records to display at the moment.</p>
Add a record from here! <a href="javascript:;" data-task="create" class="btn btn-success xcrud-action"><i class="fa fa-plus"></i> Add</a>
</div>
');
echo $xcrud->render();
?>