Assets

This folder has two subfolders CSS and js, As clear by its name all the js files (.js extension) or third-party files will reside here. And all CSS files custom or third-party will reside here.

---->asset
    |---->js
    |---->css

Here is the JS file

//file name booking_list.js
$(document).ready(function () {
    $('#booling_list').DataTable();
    $('#customer_list').DataTable();
});
j

CSS file

/* File name extension.css */
.nav-color{
    background-color: #337ab7 !important;
}

Last updated