-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
增加resource_path()下目录的命令空间,增加发布基础blade文件到resource_path()下
- Loading branch information
Showing
12 changed files
with
126 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file modified
0
resources/assets/jfadmin/plugins/sweetalert2/dist/sweetalert2.all.min.js
100755 → 100644
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
@extends('jfadmin::layouts.base') | ||
|
||
@section('title', '首页') | ||
|
||
@section('content') | ||
<div class="wrapper wrapper-content animated fadeInRight"> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="ibox"> | ||
<div class="ibox-title"> | ||
<h5>环境参数</h5> | ||
<div class="ibox-tools"> | ||
<a class="collapse-link"> | ||
<i class="fa fa-chevron-up"></i> | ||
</a> | ||
<a class="close-link"> | ||
<i class="fa fa-times"></i> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="ibox-content clearfix"> | ||
<div class="table-responsive"> | ||
<table class="table table-bordered table-hover golden-table"> | ||
<thead> | ||
<tr> | ||
<th width="40%">参数名称</th> | ||
<th width="60%">参数值</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
@foreach($envs as $item) | ||
<tr> | ||
<td>{{ $item['name'] }}</td> | ||
<td class="td-break">{{ $item['value'] }}</td> | ||
</tr> | ||
@endforeach | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="ibox"> | ||
<div class="ibox-title"> | ||
<h5>引入扩展包</h5> | ||
<div class="ibox-tools"> | ||
<a class="collapse-link"> | ||
<i class="fa fa-chevron-up"></i> | ||
</a> | ||
<a class="close-link"> | ||
<i class="fa fa-times"></i> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="ibox-content clearfix"> | ||
<div class="table-responsive"> | ||
<table class="table table-bordered table-hover golden-table"> | ||
<thead> | ||
<tr> | ||
<th width="40%">名称</th> | ||
<th width="60%">版本</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
@foreach($dependencies as $key => $item) | ||
<tr> | ||
<td>{{ $key }}</td> | ||
<td>{{ $item }}</td> | ||
</tr> | ||
@endforeach | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
@endsection |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters