我正在为 Web 应用程序构建管理界面。
完整的目录结构如下:
|-main
| |- app
| |- bootstrap
| |- config
| |- database
| |- resources
| | -views
| |-admin
| |-templates
| |-template.blade.php
| |-utils
| |-foot.blade.php
| |-head.blade.php
| |-views
| |-index.blade.php
| |-users.blade.php
| |- routes
| |- web.php
|
|-public_html
| |-admindash
| |-dist
| |-css
| |-img
| |-js
| |-plugins
| |-bootstrap
| |-fontawesome-free
| |-jquery
head.blade 文件看起来与此类似:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>...</title>
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="../admindash/plugins/fontawesome-free/css/all.min.css">
.
.
some more css here
.
.
</head>
<body class="hold-transition sidebar-mini">
脚.刀片:
<script src="../admindash/plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap 4 -->
<script
.
.
.
More scripts here
.
.
.
</body>
</html>
幕布斯6054654