9 lines
205 B
PHP
9 lines
205 B
PHP
<script type="text/javascript">
|
|
jQuery(document).ready(function(){
|
|
// dynamic table
|
|
oTable = jQuery('#{!! $id !!}').dataTable(
|
|
{!! $options !!}
|
|
);
|
|
});
|
|
</script>
|