@section('css')
<link type="text/css" rel="stylesheet" href="{{asset('assets/datatables/css/jquery.dataTables.min.css')}}">
@endsection
@section('js')
<script type="text/javascript" src="{{asset('assets/datatables/js/jquery.dataTables.min.js')}}"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#service_table').DataTable();
});
</script>
@endsection
<table class="table table-bordered" id="service_table">
Same ho mathiko
@section('css')
<link type="text/css" rel="stylesheet" href="{{asset('assets/datatables/css/jquery.dataTables.min.css')}}">
@endsection
@section('js')
<script type="text/javascript" src="{{asset('assets/datatables/js/jquery.dataTables.min.js')}}"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#about_table').DataTable();
});
</script>
@endsection
from bhusan project name:demo
Comments
Post a Comment