1+ <!doctype html>
2+ <html lang =" en" >
3+ <head >
4+ <!-- Required meta tags -->
5+ <meta charset =" utf-8" >
6+ <meta name =" viewport" content =" width=device-width, initial-scale=1" >
7+
8+ <!-- Bootstrap CSS 5 -->
9+ <
link href =
" https://cdn.jsdelivr.net/npm/[email protected] /dist/css/bootstrap.min.css" rel =
" stylesheet" integrity =
" sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin =
" anonymous" >
10+ <!-- jquery Datatables CSS -->
11+ <link href =" https://cdn.datatables.net/1.10.24/css/dataTables.bootstrap5.min.css" rel =" stylesheet" >
12+ <!-- https://datatables.net/examples/styling/bootstrap5.html -->
13+ <style >
14+ a {
15+ text-decoration : unset ;
16+ }
17+ </style >
18+ <title >@yield (' title' ) | Raj Technologies Pvt Ltd</title >
19+ </head >
20+ <body >
21+ <nav class =" navbar navbar-expand-lg navbar-light bg-light" >
22+ <div class =" container-fluid" >
23+ <a class =" navbar-brand" href =" #" >Laravel Dev Tools</a >
24+ <button class =" navbar-toggler" type =" button" data-bs-toggle =" collapse" data-bs-target =" #navbarSupportedContent" aria-controls =" navbarSupportedContent" aria-expanded =" false" aria-label =" Toggle navigation" >
25+ <span class =" navbar-toggler-icon" ></span >
26+ </button >
27+ <div class =" collapse navbar-collapse" id =" navbarSupportedContent" >
28+ <ul class =" navbar-nav me-auto mb-2 mb-lg-0" >
29+ <li class =" nav-item" >
30+ <a class =" nav-link active" aria-current =" page" href =" #" >Home</a >
31+ </li >
32+
33+ <li class =" nav-item" >
34+ <a class =" nav-link" href =" {{ route (' clearcache' )} }" >Clear Cache</a >
35+ </li >
36+ <li class =" nav-item" >
37+ <a class =" nav-link" href =" {{ route (' routeslist' )} }" >Routes List</a >
38+ </li >
39+ <li class =" nav-item" >
40+ <a class =" nav-link" href =" {{ route (' routeslist' ,[' only' => ' api' ])} }" >API Routes List</a >
41+ </li >
42+ {{-- <li class="nav-item dropdown">
43+ <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
44+ Dropdown
45+ </a>
46+ <ul class="dropdown-menu" aria-labelledby="navbarDropdown">
47+ <li><a class="dropdown-item" href="#">Action</a></li>
48+ <li><a class="dropdown-item" href="#">Another action</a></li>
49+ <li><hr class="dropdown-divider"></li>
50+ <li><a class="dropdown-item" href="#">Something else here</a></li>
51+ </ul>
52+ </li>--}}
53+
54+ </ul >
55+
56+ </div >
57+ </div >
58+ </nav >
59+ <div class =" container-fluid mt-2" >
60+ @yield (' content' )
61+ </div >
62+ <footer class =" fixed-bottom" >
63+ <p class =" text-center" >
64+ <small >
65+ Laravel Tools by <a class =" text-primary" href =" http://rajtechnologies.com" target =" _black" >Raj Technologies Pvt Ltd</a >
66+ Created By <a class =" text-success" href =" http://bhargavraviya.medium.com" target =" _black" >Bhargav Raviya</a >
67+ </small >
68+ </p >
69+ </footer >
70+ <!-- Optional JavaScript; choose one of the two! -->
71+ <script src =" https://code.jquery.com/jquery-3.5.1.js" ></script >
72+ <script src =" https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js" ></script >
73+ <script src =" https://cdn.datatables.net/1.10.24/js/dataTables.bootstrap5.min.js" ></script >
74+
75+
76+ <!-- Option 1: Bootstrap Bundle with Popper -->
77+ <
script src =
" https://cdn.jsdelivr.net/npm/[email protected] /dist/js/bootstrap.bundle.min.js" integrity =
" sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin =
" anonymous" ></
script >
78+
79+ <!-- Option 2: Separate Popper and Bootstrap JS -->
80+ <
script src =
" https://cdn.jsdelivr.net/npm/@popperjs /[email protected] /dist/umd/popper.min.js" integrity =
" sha384-KsvD1yqQ1/1+IA7gi3P0tyJcT3vR+NdBTt13hSJ2lnve8agRGXTTyNaBYmCR/Nwi" crossorigin =
" anonymous" ></
script >
81+ <
script src =
" https://cdn.jsdelivr.net/npm/[email protected] /dist/js/bootstrap.min.js" integrity =
" sha384-nsg8ua9HAw1y0W1btsyWgBklPnCUAFLuTMS2G72MMONqmOymq585AcH49TLBQObG" crossorigin =
" anonymous" ></
script >
82+ @yield (' script-footer' )
83+ <script >
84+ $ (document ).ready (function () {
85+ $ (' #datatable' ).DataTable ();
86+ } );
87+ </script >
88+ </body >
89+ </html >
0 commit comments