why tracks storage folder?
This commit is contained in:
parent
5a0bf53c3f
commit
57a018f030
|
@ -2,6 +2,7 @@
|
|||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/storage/logs
|
||||
/vendor
|
||||
/.idea
|
||||
/.vagrant
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
a:4:{s:6:"_token";s:40:"ONIeVdJHxUFkpUG3gZRcRSkF14FDIuUJRkyS5HtY";s:9:"_previous";a:1:{s:3:"url";s:24:"http://coinwind.test/nft";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}s:52:"login_admin_59ba36addc2b2f9401580f014c7f58ea4e30989d";i:2;}
|
|
@ -1 +0,0 @@
|
|||
a:3:{s:6:"_token";s:40:"2vaPSL74qpGHTxp2nImGpmsgFUGhJ9LU2M0lLhqp";s:9:"_previous";a:1:{s:3:"url";s:26:"http://coinwind.test/vault";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}
|
|
@ -1 +0,0 @@
|
|||
<script data-exec-on-popstate>$(function () {<?php $__currentLoopData = $script; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $s): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php echo $s; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>});</script>
|
|
@ -1 +0,0 @@
|
|||
<style type="text/css"><?php $__currentLoopData = $style; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $s): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?><?php echo $s; ?><?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?></style>
|
|
@ -1,19 +0,0 @@
|
|||
<div class="<?php echo e($viewClass['form-group']); ?> <?php echo !$errors->has($errorKey) ? '' : 'has-error'; ?>">
|
||||
|
||||
<label for="<?php echo e($id); ?>" class="<?php echo e($viewClass['label']); ?> control-label"><?php echo e($label); ?></label>
|
||||
|
||||
<div class="<?php echo e($viewClass['field']); ?>">
|
||||
|
||||
<?php echo $__env->make('admin::form.error', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
<select class="form-control <?php echo e($class); ?>" style="width: 100%;" name="<?php echo e($name); ?>[]" multiple="multiple" data-placeholder="<?php echo e($placeholder); ?>" <?php echo $attributes; ?> >
|
||||
<?php $__currentLoopData = $options; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $select => $option): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<option value="<?php echo e($select); ?>" <?php echo e(in_array($select, (array)old($column, $value)) ?'selected':''); ?>><?php echo e($option); ?></option>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</select>
|
||||
<input type="hidden" name="<?php echo e($name); ?>[]" />
|
||||
|
||||
<?php echo $__env->make('admin::form.help-block', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
</div>
|
||||
</div>
|
|
@ -1,67 +0,0 @@
|
|||
<!-- Main Header -->
|
||||
<header class="main-header">
|
||||
|
||||
<!-- Logo -->
|
||||
<a href="<?php echo e(admin_url('/')); ?>" class="logo">
|
||||
<!-- mini logo for sidebar mini 50x50 pixels -->
|
||||
<span class="logo-mini"><?php echo config('admin.logo-mini', config('admin.name')); ?></span>
|
||||
<!-- logo for regular state and mobile devices -->
|
||||
<span class="logo-lg"><?php echo config('admin.logo', config('admin.name')); ?></span>
|
||||
</a>
|
||||
|
||||
<!-- Header Navbar -->
|
||||
<nav class="navbar navbar-static-top" role="navigation">
|
||||
<!-- Sidebar toggle button-->
|
||||
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
</a>
|
||||
<ul class="nav navbar-nav hidden-sm visible-lg-block">
|
||||
<?php echo Admin::getNavbar()->render('left'); ?>
|
||||
|
||||
</ul>
|
||||
|
||||
<!-- Navbar Right Menu -->
|
||||
<div class="navbar-custom-menu">
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
<?php echo Admin::getNavbar()->render(); ?>
|
||||
|
||||
|
||||
<!-- User Account Menu -->
|
||||
<li class="dropdown user user-menu">
|
||||
<!-- Menu Toggle Button -->
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
||||
<!-- The user image in the navbar-->
|
||||
<img src="<?php echo e(Admin::user()->avatar); ?>" class="user-image" alt="User Image">
|
||||
<!-- hidden-xs hides the username on small devices so only the image appears. -->
|
||||
<span class="hidden-xs"><?php echo e(Admin::user()->name); ?></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<!-- The user image in the menu -->
|
||||
<li class="user-header">
|
||||
<img src="<?php echo e(Admin::user()->avatar); ?>" class="img-circle" alt="User Image">
|
||||
|
||||
<p>
|
||||
<?php echo e(Admin::user()->name); ?>
|
||||
|
||||
<small>Member since admin <?php echo e(Admin::user()->created_at); ?></small>
|
||||
</p>
|
||||
</li>
|
||||
<li class="user-footer">
|
||||
<div class="pull-left">
|
||||
<a href="<?php echo e(admin_url('auth/setting')); ?>" class="btn btn-default btn-flat"><?php echo e(trans('admin.setting')); ?></a>
|
||||
</div>
|
||||
<div class="pull-right">
|
||||
<a href="<?php echo e(admin_url('auth/logout')); ?>" class="btn btn-default btn-flat"><?php echo e(trans('admin.logout')); ?></a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<!-- Control Sidebar Toggle Button -->
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
|
@ -1,6 +0,0 @@
|
|||
<?php if($help): ?>
|
||||
<span class="help-block">
|
||||
<i class="fa <?php echo e(\Illuminate\Support\Arr::get($help, 'icon')); ?>"></i> <?php echo \Illuminate\Support\Arr::get($help, 'text'); ?>
|
||||
|
||||
</span>
|
||||
<?php endif; ?>
|
|
@ -1,13 +0,0 @@
|
|||
<div class="footer">
|
||||
<div class="jss36">
|
||||
<div class="footer__wrapper">
|
||||
<div class="footer__right-img-box" style="margin-right: 64px;" onclick="window.open('<?php echo e($config["telegram"]); ?>')">
|
||||
<i class="footer__right-img-wechat"></i>
|
||||
</div>
|
||||
<div class="footer__right-img-box">
|
||||
<a href="<?php echo e($config['twitter']); ?>" target="_blank"><i class="footer__right-img-tw"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -1,104 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title><?php echo e(config('admin.title')); ?> | <?php echo e(trans('admin.login')); ?></title>
|
||||
<!-- Tell the browser to be responsive to screen width -->
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
|
||||
<?php if(!is_null($favicon = Admin::favicon())): ?>
|
||||
<link rel="shortcut icon" href="<?php echo e($favicon); ?>">
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- Bootstrap 3.3.5 -->
|
||||
<link rel="stylesheet" href="<?php echo e(admin_asset("vendor/laravel-admin/AdminLTE/bootstrap/css/bootstrap.min.css")); ?>">
|
||||
<!-- Font Awesome -->
|
||||
<link rel="stylesheet" href="<?php echo e(admin_asset("vendor/laravel-admin/font-awesome/css/font-awesome.min.css")); ?>">
|
||||
<!-- Theme style -->
|
||||
<link rel="stylesheet" href="<?php echo e(admin_asset("vendor/laravel-admin/AdminLTE/dist/css/AdminLTE.min.css")); ?>">
|
||||
<!-- iCheck -->
|
||||
<link rel="stylesheet" href="<?php echo e(admin_asset("vendor/laravel-admin/AdminLTE/plugins/iCheck/square/blue.css")); ?>">
|
||||
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
||||
<script src="//oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class="hold-transition login-page" <?php if(config('admin.login_background_image')): ?>style="background: url(<?php echo e(config('admin.login_background_image')); ?>) no-repeat;background-size: cover;"<?php endif; ?>>
|
||||
<div class="login-box">
|
||||
<div class="login-logo">
|
||||
<a href="<?php echo e(admin_url('/')); ?>"><b><?php echo e(config('admin.name')); ?></b></a>
|
||||
</div>
|
||||
<!-- /.login-logo -->
|
||||
<div class="login-box-body">
|
||||
<p class="login-box-msg"><?php echo e(trans('admin.login')); ?></p>
|
||||
|
||||
<form action="<?php echo e(admin_url('auth/login')); ?>" method="post">
|
||||
<div class="form-group has-feedback <?php echo !$errors->has('username') ?: 'has-error'; ?>">
|
||||
|
||||
<?php if($errors->has('username')): ?>
|
||||
<?php $__currentLoopData = $errors->get('username'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<label class="control-label" for="inputError"><i class="fa fa-times-circle-o"></i><?php echo e($message); ?></label><br>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<input type="text" class="form-control" placeholder="<?php echo e(trans('admin.username')); ?>" name="username" value="<?php echo e(old('username')); ?>">
|
||||
<span class="glyphicon glyphicon-envelope form-control-feedback"></span>
|
||||
</div>
|
||||
<div class="form-group has-feedback <?php echo !$errors->has('password') ?: 'has-error'; ?>">
|
||||
|
||||
<?php if($errors->has('password')): ?>
|
||||
<?php $__currentLoopData = $errors->get('password'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<label class="control-label" for="inputError"><i class="fa fa-times-circle-o"></i><?php echo e($message); ?></label><br>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<input type="password" class="form-control" placeholder="<?php echo e(trans('admin.password')); ?>" name="password">
|
||||
<span class="glyphicon glyphicon-lock form-control-feedback"></span>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-8">
|
||||
<?php if(config('admin.auth.remember')): ?>
|
||||
<div class="checkbox icheck">
|
||||
<label>
|
||||
<input type="checkbox" name="remember" value="1" <?php echo e((!old('username') || old('remember')) ? 'checked' : ''); ?>>
|
||||
<?php echo e(trans('admin.remember_me')); ?>
|
||||
|
||||
</label>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<!-- /.col -->
|
||||
<div class="col-xs-4">
|
||||
<input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>">
|
||||
<button type="submit" class="btn btn-primary btn-block btn-flat"><?php echo e(trans('admin.login')); ?></button>
|
||||
</div>
|
||||
<!-- /.col -->
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
<!-- /.login-box-body -->
|
||||
</div>
|
||||
<!-- /.login-box -->
|
||||
|
||||
<!-- jQuery 2.1.4 -->
|
||||
<script src="<?php echo e(admin_asset("vendor/laravel-admin/AdminLTE/plugins/jQuery/jQuery-2.1.4.min.js")); ?>"></script>
|
||||
<!-- Bootstrap 3.3.5 -->
|
||||
<script src="<?php echo e(admin_asset("vendor/laravel-admin/AdminLTE/bootstrap/js/bootstrap.min.js")); ?>"></script>
|
||||
<!-- iCheck -->
|
||||
<script src="<?php echo e(admin_asset("vendor/laravel-admin/AdminLTE/plugins/iCheck/icheck.min.js")); ?>"></script>
|
||||
<script>
|
||||
$(function () {
|
||||
$('input').iCheck({
|
||||
checkboxClass: 'icheckbox_square-blue',
|
||||
radioClass: 'iradio_square-blue',
|
||||
increaseArea: '20%' // optional
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -1,5 +0,0 @@
|
|||
<?php $__env->startSection('title', 'Page Not Found'); ?>
|
||||
|
||||
<?php $__env->startSection('message', 'Sorry, the page you are looking for could not be found.'); ?>
|
||||
|
||||
<?php echo $__env->make('errors::layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
|
@ -1,33 +0,0 @@
|
|||
<div class="box-footer">
|
||||
|
||||
<?php echo e(csrf_field()); ?>
|
||||
|
||||
|
||||
<div class="col-md-<?php echo e($width['label']); ?>">
|
||||
</div>
|
||||
|
||||
<div class="col-md-<?php echo e($width['field']); ?>">
|
||||
|
||||
<?php if(in_array('submit', $buttons)): ?>
|
||||
<div class="btn-group pull-right">
|
||||
<button type="submit" class="btn btn-primary"><?php echo e(trans('admin.submit')); ?></button>
|
||||
</div>
|
||||
|
||||
<?php $__currentLoopData = $submit_redirects; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $value => $redirect): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php if(in_array($redirect, $checkboxes)): ?>
|
||||
<label class="pull-right" style="margin: 5px 10px 0 0;">
|
||||
<input type="checkbox" class="after-submit" name="after-save" value="<?php echo e($value); ?>" <?php echo e(($default_check == $redirect) ? 'checked' : ''); ?>> <?php echo e(trans("admin.{$redirect}")); ?>
|
||||
|
||||
</label>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if(in_array('reset', $buttons)): ?>
|
||||
<div class="btn-group pull-left">
|
||||
<button type="reset" class="btn btn-warning"><?php echo e(trans('admin.reset')); ?></button>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
|
@ -1,46 +0,0 @@
|
|||
<div class="grid-dropdown-actions dropdown">
|
||||
<a href="#" style="padding: 0 10px;" class="dropdown-toggle" data-toggle="dropdown">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</a>
|
||||
<ul class="dropdown-menu" style="min-width: 70px !important;box-shadow: 0 2px 3px 0 rgba(0,0,0,.2);border-radius:0;left: -65px;top: 5px;">
|
||||
|
||||
<?php $__currentLoopData = $default; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $action): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<li><?php echo $action->render(); ?></li>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
|
||||
<?php if(!empty($custom)): ?>
|
||||
|
||||
<?php if(!empty($default)): ?>
|
||||
<li class="divider"></li>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php $__currentLoopData = $custom; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $action): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<li><?php echo $action->render(); ?></li>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$('.table-responsive').on('shown.bs.dropdown', function(e) {
|
||||
var t = $(this),
|
||||
m = $(e.target).find('.dropdown-menu'),
|
||||
tb = t.offset().top + t.height(),
|
||||
mb = m.offset().top + m.outerHeight(true),
|
||||
d = 20;
|
||||
if (t[0].scrollWidth > t.innerWidth()) {
|
||||
if (mb + d > tb) {
|
||||
t.css('padding-bottom', ((mb + d) - tb));
|
||||
}
|
||||
} else {
|
||||
t.css('overflow', 'visible');
|
||||
}
|
||||
}).on('hidden.bs.dropdown', function() {
|
||||
$(this).css({
|
||||
'padding-bottom': '',
|
||||
'overflow': ''
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<?php echo $__env->yieldContent('child'); ?>
|
|
@ -1,6 +0,0 @@
|
|||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label"> <?php echo e($label); ?></label>
|
||||
<div class="col-sm-8">
|
||||
<?php echo $__env->make($presenter->view(), array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
</div>
|
||||
</div>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,18 +0,0 @@
|
|||
<table <?php echo $attributes; ?>>
|
||||
<thead>
|
||||
<tr>
|
||||
<?php $__currentLoopData = $headers; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $header): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<th><?php echo e($header); ?></th>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php $__currentLoopData = $rows; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<tr>
|
||||
<?php $__currentLoopData = $row; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<td><?php echo $item; ?></td>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</tr>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</tbody>
|
||||
</table>
|
|
@ -1,42 +0,0 @@
|
|||
<input type="checkbox" class="<?php echo e($class); ?>" <?php echo e($checked); ?> data-key="<?php echo e($key); ?>" />
|
||||
|
||||
<script>
|
||||
$('.<?php echo e($class); ?>').bootstrapSwitch({
|
||||
size:'mini',
|
||||
onText: '<?php echo e($states['on']['text']); ?>',
|
||||
offText: '<?php echo e($states['off']['text']); ?>',
|
||||
onColor: '<?php echo e($states['on']['color']); ?>',
|
||||
offColor: '<?php echo e($states['off']['color']); ?>',
|
||||
onSwitchChange: function(event, state){
|
||||
|
||||
$(this).val(state ? <?php echo e($states['on']['value']); ?> : <?php echo e($states['off']['value']); ?>);
|
||||
|
||||
var key = $(this).data('key');
|
||||
var value = $(this).val();
|
||||
var _status = true;
|
||||
|
||||
$.ajax({
|
||||
url: "<?php echo e($resource); ?>/" + key,
|
||||
type: "POST",
|
||||
async:false,
|
||||
data: {
|
||||
"<?php echo e($name); ?>": value,
|
||||
_token: LA.token,
|
||||
_method: 'PUT'
|
||||
},
|
||||
success: function (data) {
|
||||
if (data.status)
|
||||
toastr.success(data.message);
|
||||
else
|
||||
toastr.warning(data.message);
|
||||
},
|
||||
complete:function(xhr,status) {
|
||||
if (status == 'success')
|
||||
_status = xhr.responseJSON.status;
|
||||
}
|
||||
});
|
||||
|
||||
return _status;
|
||||
}
|
||||
});
|
||||
</script>
|
|
@ -1,33 +0,0 @@
|
|||
<div class="<?php echo e($viewClass['form-group']); ?> <?php echo !$errors->has($errorKey) ? '' : 'has-error'; ?>">
|
||||
|
||||
<label for="<?php echo e($id); ?>" class="<?php echo e($viewClass['label']); ?> control-label"><?php echo e($label); ?></label>
|
||||
|
||||
<div class="<?php echo e($viewClass['field']); ?>">
|
||||
|
||||
<?php echo $__env->make('admin::form.error', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
<div class="input-group">
|
||||
|
||||
<?php if($prepend): ?>
|
||||
<span class="input-group-addon"><?php echo $prepend; ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<input <?php echo $attributes; ?> />
|
||||
|
||||
<?php if($append): ?>
|
||||
<span class="input-group-addon clearfix"><?php echo $append; ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if(isset($btn)): ?>
|
||||
<span class="input-group-btn">
|
||||
<?php echo $btn; ?>
|
||||
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php echo $__env->make('admin::form.help-block', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
</div>
|
||||
</div>
|
|
@ -1,22 +0,0 @@
|
|||
<div class="modal" tabindex="-1" role="dialog" id="<?php echo e($modal_id); ?>">
|
||||
<div class="modal-dialog <?php echo e($modal_size); ?>" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo e($title); ?></h4>
|
||||
</div>
|
||||
<form>
|
||||
<div class="modal-body">
|
||||
<?php $__currentLoopData = $fields; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $field): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $field->render(); ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?php echo e(__('admin.close')); ?></button>
|
||||
<button type="submit" class="btn btn-primary"><?php echo e(__('admin.submit')); ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</div><!-- /.modal-content -->
|
||||
</div><!-- /.modal-dialog -->
|
||||
</div><!-- /.modal -->
|
|
@ -1,75 +0,0 @@
|
|||
<?php $__env->startSection('content'); ?>
|
||||
<section class="content-header">
|
||||
<h1>
|
||||
<?php echo $header ?: trans('admin.title'); ?>
|
||||
|
||||
<small><?php echo $description ?: trans('admin.description'); ?></small>
|
||||
</h1>
|
||||
|
||||
<!-- breadcrumb start -->
|
||||
<?php if($breadcrumb): ?>
|
||||
<ol class="breadcrumb" style="margin-right: 30px;">
|
||||
<li><a href="<?php echo e(admin_url('/')); ?>"><i class="fa fa-dashboard"></i> <?php echo e(__('Home')); ?></a></li>
|
||||
<?php $__currentLoopData = $breadcrumb; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php if($loop->last): ?>
|
||||
<li class="active">
|
||||
<?php if(\Illuminate\Support\Arr::has($item, 'icon')): ?>
|
||||
<i class="fa fa-<?php echo e($item['icon']); ?>"></i>
|
||||
<?php endif; ?>
|
||||
<?php echo e($item['text']); ?>
|
||||
|
||||
</li>
|
||||
<?php else: ?>
|
||||
<li>
|
||||
<?php if(\Illuminate\Support\Arr::has($item, 'url')): ?>
|
||||
<a href="<?php echo e(admin_url(\Illuminate\Support\Arr::get($item, 'url'))); ?>">
|
||||
<?php if(\Illuminate\Support\Arr::has($item, 'icon')): ?>
|
||||
<i class="fa fa-<?php echo e($item['icon']); ?>"></i>
|
||||
<?php endif; ?>
|
||||
<?php echo e($item['text']); ?>
|
||||
|
||||
</a>
|
||||
<?php else: ?>
|
||||
<?php if(\Illuminate\Support\Arr::has($item, 'icon')): ?>
|
||||
<i class="fa fa-<?php echo e($item['icon']); ?>"></i>
|
||||
<?php endif; ?>
|
||||
<?php echo e($item['text']); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</ol>
|
||||
<?php elseif(config('admin.enable_default_breadcrumb')): ?>
|
||||
<ol class="breadcrumb" style="margin-right: 30px;">
|
||||
<li><a href="<?php echo e(admin_url('/')); ?>"><i class="fa fa-dashboard"></i> <?php echo e(__('Home')); ?></a></li>
|
||||
<?php for($i = 2; $i <= count(Request::segments()); $i++): ?>
|
||||
<li>
|
||||
<?php echo e(ucfirst(Request::segment($i))); ?>
|
||||
|
||||
</li>
|
||||
<?php endfor; ?>
|
||||
</ol>
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- breadcrumb end -->
|
||||
|
||||
</section>
|
||||
|
||||
<section class="content">
|
||||
|
||||
<?php echo $__env->make('admin::partials.alerts', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
<?php echo $__env->make('admin::partials.exception', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
<?php echo $__env->make('admin::partials.toastr', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
<?php if($_view_): ?>
|
||||
<?php echo $__env->make($_view_['view'], $_view_['data'], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
<?php else: ?>
|
||||
<?php echo $_content_; ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</section>
|
||||
<?php $__env->stopSection(); ?>
|
||||
|
||||
<?php echo $__env->make('admin::index', ['header' => strip_tags($header)], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
|
@ -1,17 +0,0 @@
|
|||
<li class="dd-item" data-id="<?php echo e($branch[$keyName]); ?>">
|
||||
<div class="dd-handle">
|
||||
<?php echo $branchCallback($branch); ?>
|
||||
|
||||
<span class="pull-right dd-nodrag">
|
||||
<a href="<?php echo e(url("$path/$branch[$keyName]/edit")); ?>"><i class="fa fa-edit"></i></a>
|
||||
<a href="javascript:void(0);" data-id="<?php echo e($branch[$keyName]); ?>" class="tree_branch_delete"><i class="fa fa-trash"></i></a>
|
||||
</span>
|
||||
</div>
|
||||
<?php if(isset($branch['children'])): ?>
|
||||
<ol class="dd-list">
|
||||
<?php $__currentLoopData = $branch['children']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $branch): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $__env->make($branchView, $branch, array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</ol>
|
||||
<?php endif; ?>
|
||||
</li>
|
|
@ -1,6 +0,0 @@
|
|||
<select class="form-control <?php echo e($class); ?>" name="<?php echo e($name); ?>" style="width: 100%;">
|
||||
<option></option>
|
||||
<?php $__currentLoopData = $options; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $select => $option): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<option value="<?php echo e($select); ?>" <?php echo e((string)$select === (string)request($name, $value) ?'selected':''); ?>><?php echo e($option); ?></option>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</select>
|
|
@ -1,49 +0,0 @@
|
|||
<aside class="main-sidebar">
|
||||
|
||||
<!-- sidebar: style can be found in sidebar.less -->
|
||||
<section class="sidebar">
|
||||
|
||||
<!-- Sidebar user panel (optional) -->
|
||||
<div class="user-panel">
|
||||
<div class="pull-left image">
|
||||
<img src="<?php echo e(Admin::user()->avatar); ?>" class="img-circle" alt="User Image">
|
||||
</div>
|
||||
<div class="pull-left info">
|
||||
<p><?php echo e(Admin::user()->name); ?></p>
|
||||
<!-- Status -->
|
||||
<a href="#"><i class="fa fa-circle text-success"></i> <?php echo e(trans('admin.online')); ?></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if(config('admin.enable_menu_search')): ?>
|
||||
<!-- search form (Optional) -->
|
||||
<form class="sidebar-form" style="overflow: initial;" onsubmit="return false;">
|
||||
<div class="input-group">
|
||||
<input type="text" autocomplete="off" class="form-control autocomplete" placeholder="Search...">
|
||||
<span class="input-group-btn">
|
||||
<button type="submit" name="search" id="search-btn" class="btn btn-flat"><i class="fa fa-search"></i>
|
||||
</button>
|
||||
</span>
|
||||
<ul class="dropdown-menu" role="menu" style="min-width: 210px;max-height: 300px;overflow: auto;">
|
||||
<?php $__currentLoopData = Admin::menuLinks(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $link): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<li>
|
||||
<a href="<?php echo e(admin_url($link['uri'])); ?>"><i class="fa <?php echo e($link['icon']); ?>"></i><?php echo e(admin_trans($link['title'])); ?></a>
|
||||
</li>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
<!-- /.search form -->
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- Sidebar Menu -->
|
||||
<ul class="sidebar-menu">
|
||||
<li class="header"><?php echo e(trans('admin.menu')); ?></li>
|
||||
|
||||
<?php echo $__env->renderEach('admin::partials.menu', Admin::menu(), 'item'); ?>
|
||||
|
||||
</ul>
|
||||
<!-- /.sidebar-menu -->
|
||||
</section>
|
||||
<!-- /.sidebar -->
|
||||
</aside>
|
|
@ -1,22 +0,0 @@
|
|||
<div class="input-group input-group-sm">
|
||||
<?php if($group): ?>
|
||||
<div class="input-group-btn">
|
||||
<input type="hidden" name="<?php echo e($id); ?>_group" class="<?php echo e($group_name); ?>-operation" value="0"/>
|
||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" style="min-width: 32px;">
|
||||
<span class="<?php echo e($group_name); ?>-label"><?php echo e($default['label']); ?></span>
|
||||
|
||||
<span class="fa fa-caret-down"></span>
|
||||
</button>
|
||||
<ul class="dropdown-menu <?php echo e($group_name); ?>">
|
||||
<?php $__currentLoopData = $group; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<li><a href="#" data-index="<?php echo e($index); ?>"> <?php echo e($item['label']); ?> </a></li>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</ul>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="input-group-addon">
|
||||
<i class="fa fa-<?php echo e($icon); ?>"></i>
|
||||
</div>
|
||||
|
||||
<input type="<?php echo e($type); ?>" class="form-control <?php echo e($id); ?>" placeholder="<?php echo e($placeholder); ?>" name="<?php echo e($name); ?>" value="<?php echo e(request($name, $value)); ?>">
|
||||
</div>
|
|
@ -1,13 +0,0 @@
|
|||
<?php if(Session::has('toastr')): ?>
|
||||
<?php
|
||||
$toastr = Session::pull('toastr');
|
||||
$type = \Illuminate\Support\Arr::get($toastr->get('type'), 0, 'success');
|
||||
$message = \Illuminate\Support\Arr::get($toastr->get('message'), 0, '');
|
||||
$options = json_encode($toastr->get('options', []));
|
||||
?>
|
||||
<script>
|
||||
$(function () {
|
||||
toastr.<?php echo e($type); ?>('<?php echo $message; ?>', null, <?php echo $options; ?>);
|
||||
});
|
||||
</script>
|
||||
<?php endif; ?>
|
|
@ -1,6 +0,0 @@
|
|||
<?php if($help): ?>
|
||||
<span class="help-block">
|
||||
<i class="fa <?php echo e(\Illuminate\Support\Arr::get($help, 'icon')); ?>"></i> <?php echo \Illuminate\Support\Arr::get($help, 'text'); ?>
|
||||
|
||||
</span>
|
||||
<?php endif; ?>
|
|
@ -1,41 +0,0 @@
|
|||
<?php if($error = session()->get('error')): ?>
|
||||
<div class="alert alert-danger alert-dismissable">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<h4><i class="icon fa fa-ban"></i><?php echo e(\Illuminate\Support\Arr::get($error->get('title'), 0)); ?></h4>
|
||||
<p><?php echo \Illuminate\Support\Arr::get($error->get('message'), 0); ?></p>
|
||||
</div>
|
||||
<?php elseif($errors = session()->get('errors')): ?>
|
||||
<?php if($errors->hasBag('error')): ?>
|
||||
<div class="alert alert-danger alert-dismissable">
|
||||
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<?php $__currentLoopData = $errors->getBag("error")->toArray(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<p><?php echo \Illuminate\Support\Arr::get($message, 0); ?></p>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if($success = session()->get('success')): ?>
|
||||
<div class="alert alert-success alert-dismissable">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<h4><i class="icon fa fa-check"></i><?php echo e(\Illuminate\Support\Arr::get($success->get('title'), 0)); ?></h4>
|
||||
<p><?php echo \Illuminate\Support\Arr::get($success->get('message'), 0); ?></p>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if($info = session()->get('info')): ?>
|
||||
<div class="alert alert-info alert-dismissable">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<h4><i class="icon fa fa-info"></i><?php echo e(\Illuminate\Support\Arr::get($info->get('title'), 0)); ?></h4>
|
||||
<p><?php echo \Illuminate\Support\Arr::get($info->get('message'), 0); ?></p>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if($warning = session()->get('warning')): ?>
|
||||
<div class="alert alert-warning alert-dismissable">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<h4><i class="icon fa fa-warning"></i><?php echo e(\Illuminate\Support\Arr::get($warning->get('title'), 0)); ?></h4>
|
||||
<p><?php echo \Illuminate\Support\Arr::get($warning->get('message'), 0); ?></p>
|
||||
</div>
|
||||
<?php endif; ?>
|
|
@ -1,34 +0,0 @@
|
|||
<ul class="pagination pagination-sm no-margin pull-right">
|
||||
<!-- Previous Page Link -->
|
||||
<?php if($paginator->onFirstPage()): ?>
|
||||
<li class="page-item disabled"><span class="page-link">«</span></li>
|
||||
<?php else: ?>
|
||||
<li class="page-item"><a class="page-link" href="<?php echo e($paginator->previousPageUrl()); ?>" rel="prev">«</a></li>
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- Pagination Elements -->
|
||||
<?php $__currentLoopData = $elements; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $element): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<!-- "Three Dots" Separator -->
|
||||
<?php if(is_string($element)): ?>
|
||||
<li class="page-item disabled"><span class="page-link"><?php echo e($element); ?></span></li>
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- Array Of Links -->
|
||||
<?php if(is_array($element)): ?>
|
||||
<?php $__currentLoopData = $element; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $page => $url): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php if($page == $paginator->currentPage()): ?>
|
||||
<li class="page-item active"><span class="page-link"><?php echo e($page); ?></span></li>
|
||||
<?php else: ?>
|
||||
<li class="page-item"><a class="page-link" href="<?php echo e($url); ?>"><?php echo e($page); ?></a></li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
|
||||
<!-- Next Page Link -->
|
||||
<?php if($paginator->hasMorePages()): ?>
|
||||
<li class="page-item"><a class="page-link" href="<?php echo e($paginator->nextPageUrl()); ?>" rel="next">»</a></li>
|
||||
<?php else: ?>
|
||||
<li class="page-item disabled"><span class="page-link">»</span></li>
|
||||
<?php endif; ?>
|
||||
</ul>
|
|
@ -1 +0,0 @@
|
|||
<iframe src="/admin123" width="100%" style="min-height: 600px" frameborder=”no” border=”0″ marginwidth=”0″ marginheight=”0″ scrolling=”no” allowtransparency=”yes”></iframe>
|
|
@ -1,94 +0,0 @@
|
|||
<div>
|
||||
<span class="<?php echo e($elementClass); ?>" data-inserted="0" data-key="<?php echo e($key); ?>" data-name="<?php echo e($name); ?>"
|
||||
data-toggle="collapse" data-target="#grid-collapse-<?php echo e($name); ?>">
|
||||
<a href="javascript:void(0)"><i class="fa fa-angle-double-down"></i> <?php echo e($value); ?></a>
|
||||
</span>
|
||||
<template class="grid-expand-<?php echo e($name); ?>">
|
||||
<tr style='background-color: #ecf0f5;'>
|
||||
<td colspan='100%' style='padding:0 !important; border:0;'>
|
||||
<div id="grid-collapse-<?php echo e($name); ?>" class="collapse">
|
||||
<div style="padding: 10px 10px 0 10px;" class="html">
|
||||
<?php if($html): ?>
|
||||
<?php echo $html; ?>
|
||||
|
||||
<?php else: ?>
|
||||
<div class="loading text-center" style="padding: 20px 0px;">
|
||||
<i class="fa fa-spinner fa-pulse fa-3x fa-fw"></i>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</template>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var expand = $('.<?php echo e($elementClass); ?>');
|
||||
|
||||
<?php if($async): ?>
|
||||
|
||||
var load = function (url, target) {
|
||||
$.get(url, function (data) {
|
||||
target.find('.html').html(data);
|
||||
});
|
||||
};
|
||||
|
||||
expand.on('click', function (e) {
|
||||
var target = $(this);
|
||||
if (target.data('inserted') == '0') {
|
||||
var key = target.data('key');
|
||||
var name = $(this).data('name');
|
||||
var row = $(this).closest('tr');
|
||||
|
||||
row.after($('template.grid-expand-'+name).html());
|
||||
|
||||
$(this).data('inserted', 1);
|
||||
|
||||
load('<?php echo e($url); ?>'+'&key='+key, $('#grid-collapse-'+name));
|
||||
}
|
||||
|
||||
$("i", this).toggleClass("fa-angle-double-down fa-angle-double-up");
|
||||
});
|
||||
|
||||
$(document).on('pjax:click', '.collapse a.pjax, .collapse a.pjax', function (e) {
|
||||
console.log(11111);
|
||||
// load($(this).attr('href'), $(this).parent('.collapse'));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}).on('pjax:submit', '.collapse .box-header form', function (e) {
|
||||
// load($(this).attr('action')+'&'+$(this).serialize(), $(this).parent('.collapse'));
|
||||
return false;
|
||||
});
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
expand.on('click', function () {
|
||||
|
||||
if ($(this).data('inserted') == '0') {
|
||||
|
||||
var name = $(this).data('name');
|
||||
var row = $(this).closest('tr');
|
||||
|
||||
row.after($('template.grid-expand-'+name).html());
|
||||
|
||||
$(this).data('inserted', 1);
|
||||
}
|
||||
|
||||
$("i", this).toggleClass("fa-angle-double-down fa-angle-double-up");
|
||||
});
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if($expand): ?>
|
||||
expand.trigger('click');
|
||||
<?php endif; ?>
|
||||
</script>
|
||||
|
||||
<?php if($loadGrid): ?>
|
||||
<style>
|
||||
.collapse .grid-box .box-header:first-child {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
<?php endif; ?>
|
|
@ -1,9 +0,0 @@
|
|||
<tr>
|
||||
<td colspan="<?php echo e($grid->visibleColumns()->count()); ?>" class="empty-grid" style="padding: 100px;text-align: center;color: #999999">
|
||||
<svg t="1562312016538" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
||||
p-id="2076" width="128" height="128" style="fill: #e9e9e9;">
|
||||
<path d="M512.8 198.5c12.2 0 22-9.8 22-22v-90c0-12.2-9.8-22-22-22s-22 9.8-22 22v90c0 12.2 9.9 22 22 22zM307 247.8c8.6 8.6 22.5 8.6 31.1 0 8.6-8.6 8.6-22.5 0-31.1L274.5 153c-8.6-8.6-22.5-8.6-31.1 0-8.6 8.6-8.6 22.5 0 31.1l63.6 63.7zM683.9 247.8c8.6 8.6 22.5 8.6 31.1 0l63.6-63.6c8.6-8.6 8.6-22.5 0-31.1-8.6-8.6-22.5-8.6-31.1 0l-63.6 63.6c-8.6 8.6-8.6 22.5 0 31.1zM927 679.9l-53.9-234.2c-2.8-9.9-4.9-20-6.9-30.1-3.7-18.2-19.9-31.9-39.2-31.9H197c-19.9 0-36.4 14.5-39.5 33.5-1 6.3-2.2 12.5-3.9 18.7L97 679.9v239.6c0 22.1 17.9 40 40 40h750c22.1 0 40-17.9 40-40V679.9z m-315-40c0 55.2-44.8 100-100 100s-100-44.8-100-100H149.6l42.5-193.3c2.4-8.5 3.8-16.7 4.8-22.9h630c2.2 11 4.5 21.8 7.6 32.7l39.8 183.5H612z"
|
||||
p-id="2077"></path>
|
||||
</svg>
|
||||
</td>
|
||||
</tr>
|
|
@ -1,320 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
|
||||
<title>Ventura - Dashboard</title>
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.png">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="assets/css/feathericon.min.css">
|
||||
<link rel="stylesheet" href="assets/plugins/morris/morris.css">
|
||||
<link rel="stylesheet" href="assets/css/style.css">
|
||||
<script src="assets/js/html5shiv.min.js"></script>
|
||||
<script src="assets/js/respond.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Main Wrapper -->
|
||||
|
||||
<div class="content container-fluid" style="margin-top: 10px">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xl-3 col-sm-6 col-12">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dash-widget-header">
|
||||
<span class="dash-widget-icon bg-primary">
|
||||
<i class="fe fe-users"></i>
|
||||
</span>
|
||||
<div class="dash-count">
|
||||
<?php if($user_bili >= 0): ?>
|
||||
<i class="fa fa-arrow-up text-success"></i>
|
||||
<?php echo e((int)$user_bili); ?>%
|
||||
<?php else: ?>
|
||||
<i class="fa fa-arrow-down text-danger"></i>
|
||||
<?php echo e(abs($user_bili)); ?>%
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="dash-widget-info">
|
||||
<h3><?php echo e($user_jin); ?></h3>
|
||||
<h6 class="text-muted">今日新增用户</h6>
|
||||
<div class="progress progress-sm">
|
||||
<div class="progress-bar bg-primary w-<?php echo e(abs($user_bili)); ?>"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-3 col-sm-6 col-12">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dash-widget-header">
|
||||
<span class="dash-widget-icon bg-danger">
|
||||
<i class="fe fe-credit-card"></i>
|
||||
</span>
|
||||
<div class="dash-count">
|
||||
<?php if($address_bili >= 0): ?>
|
||||
<i class="fa fa-arrow-up text-success"></i>
|
||||
<?php echo e((int)$address_bili); ?>%
|
||||
<?php else: ?>
|
||||
<i class="fa fa-arrow-down text-danger"></i>
|
||||
<?php echo e(abs($address_bili)); ?>%
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dash-widget-info">
|
||||
<h3><?php echo e($address_jin); ?></h3>
|
||||
<h6 class="text-muted">今日授权用户</h6>
|
||||
<div class="progress progress-sm">
|
||||
<div class="progress-bar bg-danger w-<?php echo e(abs($address_bili)); ?>"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-3 col-sm-6 col-12">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dash-widget-header">
|
||||
<span class="dash-widget-icon bg-success">
|
||||
<i class="fe fe-money"></i>
|
||||
</span>
|
||||
<div class="dash-count">
|
||||
<?php if($detail_bili >= 0): ?>
|
||||
<i class="fa fa-arrow-up text-success"></i>
|
||||
<?php echo e((int)$detail_bili); ?>%
|
||||
<?php else: ?>
|
||||
<i class="fa fa-arrow-down text-danger"></i>
|
||||
<?php echo e(abs($detail_bili)); ?>%
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dash-widget-info">
|
||||
<h3>$<?php echo e($detail_count_jin); ?></h3>
|
||||
<h6 class="text-muted">今日充值金额</h6>
|
||||
<div class="progress progress-sm">
|
||||
<div class="progress-bar bg-success w-<?php echo e($detail_bili); ?>"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-3 col-sm-6 col-12">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dash-widget-header">
|
||||
<span class="dash-widget-icon bg-warning">
|
||||
<i class="fe fe-folder"></i>
|
||||
</span>
|
||||
<div class="dash-count">
|
||||
<?php if($with_bili >= 0): ?>
|
||||
<i class="fa fa-arrow-up text-success"></i>
|
||||
<?php echo e((int)$with_bili); ?>%
|
||||
<?php else: ?>
|
||||
<i class="fa fa-arrow-down text-danger"></i>
|
||||
<?php echo e(abs($with_bili)); ?>%
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dash-widget-info">
|
||||
<h3>$<?php echo e($with_count_jin); ?></h3>
|
||||
<h6 class="text-muted">今日提现金额</h6>
|
||||
<div class="progress progress-sm">
|
||||
<div class="progress-bar bg-warning w-<?php echo e($with_bili); ?>"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
|
||||
<!-- Sales Chart -->
|
||||
<div class="card card-chart">
|
||||
<div class="card-header">
|
||||
<h4 class="card-title">Sales Overview</h4>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div id="morrisArea"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Sales Chart -->
|
||||
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-6">
|
||||
|
||||
<!-- Invoice Chart -->
|
||||
<div class="card card-chart">
|
||||
<div class="card-header">
|
||||
<h4 class="card-title">Order Status</h4>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div id="morrisLine"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Invoice Chart -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6 d-flex">
|
||||
|
||||
<!-- Recent Orders -->
|
||||
<!--<div class="card card-table flex-fill">-->
|
||||
<!-- <div class="card-header">-->
|
||||
<!-- <h4 class="card-title">Recent Orders</h4>-->
|
||||
<!-- </div>-->
|
||||
<!-- <div class="card-body">-->
|
||||
<!-- <div class="table-responsive">-->
|
||||
<!-- <table class="table table-hover table-center">-->
|
||||
<!-- <thead>-->
|
||||
<!-- <tr>-->
|
||||
<!-- <th>Item</th>-->
|
||||
<!-- <th>Date</th>-->
|
||||
<!-- <th class="text-center">Quantity</th>-->
|
||||
<!-- <th class="text-center">Status</th>-->
|
||||
<!-- <th class="text-right">Price</th>-->
|
||||
<!-- </tr>-->
|
||||
<!-- </thead>-->
|
||||
<!-- <tbody>-->
|
||||
<!-- <tr>-->
|
||||
<!-- <td class="text-nowrap">-->
|
||||
<!-- <div class="font-weight-600">Apple Watch Series 4</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-nowrap">19 Jan 2019</td>-->
|
||||
<!-- <td class="text-center">5</td>-->
|
||||
<!-- <td class="text-center">-->
|
||||
<!-- <span class="badge badge-pill bg-success inv-badge">Completed</span>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-right">-->
|
||||
<!-- <div class="font-weight-600">$487</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- </tr>-->
|
||||
<!-- <tr>-->
|
||||
<!-- <td class="text-nowrap">-->
|
||||
<!-- <div class="font-weight-600">Apple iPhone XR</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-nowrap">20 Jan 2019</td>-->
|
||||
<!-- <td class="text-center">2</td>-->
|
||||
<!-- <td class="text-center">-->
|
||||
<!-- <span class="badge badge-pill bg-success inv-badge">Completed</span>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-right">-->
|
||||
<!-- <div class="font-weight-600">$255</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- </tr>-->
|
||||
<!-- <tr>-->
|
||||
<!-- <td class="text-nowrap">-->
|
||||
<!-- <div class="font-weight-600">Dell XPS 9370</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-nowrap">21 Jan 2019</td>-->
|
||||
<!-- <td class="text-center">1</td>-->
|
||||
<!-- <td class="text-center">-->
|
||||
<!-- <span class="badge badge-pill bg-warning inv-badge">Pending</span>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-right">-->
|
||||
<!-- <div class="font-weight-600">$799</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- </tr>-->
|
||||
<!-- <tr>-->
|
||||
<!-- <td class="text-nowrap">-->
|
||||
<!-- <div class="font-weight-600">Cisco WS-C2960X-48FPS-L</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-nowrap">22 Jan 2019</td>-->
|
||||
<!-- <td class="text-center">1</td>-->
|
||||
<!-- <td class="text-center">-->
|
||||
<!-- <span class="badge badge-pill bg-success inv-badge">Completed</span>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-right">-->
|
||||
<!-- <div class="font-weight-600">$970</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- </tr>-->
|
||||
<!-- <tr>-->
|
||||
<!-- <td class="text-nowrap">-->
|
||||
<!-- <div class="font-weight-600">Apple MacBook Pro</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-nowrap">23 Jan 2019</td>-->
|
||||
<!-- <td class="text-center">1</td>-->
|
||||
<!-- <td class="text-center">-->
|
||||
<!-- <span class="badge badge-pill bg-danger inv-badge">Cancel</span>-->
|
||||
<!-- </td>-->
|
||||
<!-- <td class="text-right">-->
|
||||
<!-- <div class="font-weight-600">$400</div>-->
|
||||
<!-- </td>-->
|
||||
<!-- </tr>-->
|
||||
<!-- </tbody>-->
|
||||
<!-- </table>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<!--</div>-->
|
||||
<!-- /Recent Orders -->
|
||||
|
||||
</div>
|
||||
<div class="col-md-6 d-flex">
|
||||
|
||||
<!-- Feed Activity -->
|
||||
<div class="card flex-fill">
|
||||
<div class="card-header">
|
||||
<h4 class="card-title">Feed Activity</h4>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<!--<ul class="activity-feed">-->
|
||||
<!-- <li class="feed-item">-->
|
||||
<!-- <div class="feed-date">Apr 13</div>-->
|
||||
<!-- <span class="feed-text"><a href="profile.html">John Doe</a> added new product <a href="product-details.html">"Smart Watch"</a></span>-->
|
||||
<!-- </li>-->
|
||||
<!-- <li class="feed-item">-->
|
||||
<!-- <div class="feed-date">Mar 21</div>-->
|
||||
<!-- <span class="feed-text"><a href="profile.html">Justin Lee</a> requested amount of <a href="invoice.html">$5,781</a></span>-->
|
||||
<!-- </li>-->
|
||||
<!-- <li class="feed-item">-->
|
||||
<!-- <div class="feed-date">Feb 2</div>-->
|
||||
<!-- <span class="feed-text">New user registered <a href="profile.html">"Mary Wiley"</a></span>-->
|
||||
<!-- </li>-->
|
||||
<!-- <li class="feed-item">-->
|
||||
<!-- <div class="feed-date">Jan 27</div>-->
|
||||
<!-- <span class="feed-text"><a href="profile.html">Robert Martin</a> gave a review for <a href="product-details.html">"Dell Laptop"</a></span>-->
|
||||
<!-- </li>-->
|
||||
<!-- <li class="feed-item">-->
|
||||
<!-- <div class="feed-date">Jan 14</div>-->
|
||||
<!-- <span class="feed-text">New customer registered <a href="profile.html">"Tori Carter"</a></span>-->
|
||||
<!-- </li>-->
|
||||
<!--</ul>-->
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Feed Activity -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Main Wrapper -->
|
||||
|
||||
<!-- jQuery -->
|
||||
<script src="assets/js/jquery-3.2.1.min.js"></script>
|
||||
|
||||
|
||||
<script src="assets/js/popper.min.js"></script>
|
||||
<script src="assets/js/bootstrap.min.js"></script>
|
||||
|
||||
|
||||
<script src="assets/plugins/slimscroll/jquery.slimscroll.min.js"></script>
|
||||
|
||||
<script src="assets/plugins/raphael/raphael.min.js"></script>
|
||||
<script src="assets/plugins/morris/morris.min.js"></script>
|
||||
<script src="assets/js/chart.morris.js"></script>
|
||||
|
||||
<!-- Custom JS -->
|
||||
<script src="assets/js/script.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,49 +0,0 @@
|
|||
<div class="box">
|
||||
|
||||
<div class="box-header">
|
||||
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-primary btn-sm <?php echo e($id); ?>-tree-tools" data-action="expand" title="<?php echo e(trans('admin.expand')); ?>">
|
||||
<i class="fa fa-plus-square-o"></i> <?php echo e(trans('admin.expand')); ?>
|
||||
|
||||
</a>
|
||||
<a class="btn btn-primary btn-sm <?php echo e($id); ?>-tree-tools" data-action="collapse" title="<?php echo e(trans('admin.collapse')); ?>">
|
||||
<i class="fa fa-minus-square-o"></i> <?php echo e(trans('admin.collapse')); ?>
|
||||
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<?php if($useSave): ?>
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-info btn-sm <?php echo e($id); ?>-save" title="<?php echo e(trans('admin.save')); ?>"><i class="fa fa-save"></i><span class="hidden-xs"> <?php echo e(trans('admin.save')); ?></span></a>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if($useRefresh): ?>
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-warning btn-sm <?php echo e($id); ?>-refresh" title="<?php echo e(trans('admin.refresh')); ?>"><i class="fa fa-refresh"></i><span class="hidden-xs"> <?php echo e(trans('admin.refresh')); ?></span></a>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="btn-group">
|
||||
<?php echo $tools; ?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php if($useCreate): ?>
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn btn-success btn-sm" href="<?php echo e(url($path)); ?>/create"><i class="fa fa-save"></i><span class="hidden-xs"> <?php echo e(trans('admin.new')); ?></span></a>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
<!-- /.box-header -->
|
||||
<div class="box-body table-responsive no-padding">
|
||||
<div class="dd" id="<?php echo e($id); ?>">
|
||||
<ol class="dd-list">
|
||||
<?php echo $__env->renderEach($branchView, $items, 'branch'); ?>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
|
@ -1,3 +0,0 @@
|
|||
<?php $__currentLoopData = $css; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $c): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<link rel="stylesheet" href="<?php echo e(admin_asset("$c")); ?>">
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
@ -1,14 +0,0 @@
|
|||
<div class="<?php echo e($viewClass['form-group']); ?> <?php echo !$errors->has($errorKey) ? '' : 'has-error'; ?>">
|
||||
|
||||
<label for="<?php echo e($id); ?>" class="<?php echo e($viewClass['label']); ?> control-label"><?php echo e($label); ?></label>
|
||||
|
||||
<div class="<?php echo e($viewClass['field']); ?>">
|
||||
|
||||
<?php echo $__env->make('admin::form.error', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
<input type="file" class="<?php echo e($class); ?>" name="<?php echo e($name); ?>" <?php echo $attributes; ?> />
|
||||
|
||||
<?php echo $__env->make('admin::form.help-block', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
</div>
|
||||
</div>
|
|
@ -1,14 +0,0 @@
|
|||
<div class="<?php echo e($viewClass['form-group']); ?>">
|
||||
<label class="<?php echo e($viewClass['label']); ?> control-label"><?php echo e($label); ?></label>
|
||||
<div class="<?php echo e($viewClass['field']); ?>">
|
||||
<div class="box box-solid box-default no-margin">
|
||||
<!-- /.box-header -->
|
||||
<div class="box-body">
|
||||
<?php echo $value; ?>
|
||||
</div><!-- /.box-body -->
|
||||
</div>
|
||||
|
||||
<?php echo $__env->make('admin::form.help-block', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
</div>
|
||||
</div>
|
File diff suppressed because one or more lines are too long
|
@ -1,166 +0,0 @@
|
|||
<div class="jss1">
|
||||
<div class="header__wrapper-box">
|
||||
<div class="jss36">
|
||||
<div class="jss2">
|
||||
<div class="jss5">
|
||||
<a href="/" class="jss4"><img src="/upload/<?php echo e($config['other']['logo_url']); ?>" alt="" /></a>
|
||||
</div>
|
||||
<div class="jss8">
|
||||
<div class="jss34">
|
||||
<div class="header__button-container" style="display: flex;">
|
||||
<div class="jss44">
|
||||
<div>
|
||||
<div class="">
|
||||
<button class="MuiButtonBase-root MuiButton-root MuiButton-text jss73 jss45" tabindex="0" type="button" aria-label="Notifications" aria-haspopup="true"><span class="MuiButton-label">HECO<b class="jss67"></b></span><span class="MuiTouchRipple-root"></span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<button class="MuiButtonBase-root MuiButton-root MuiButton-text jss73 jss45" tabindex="0" type="button" style="margin-left: 32px;"><span class="MuiButton-label" ></span><span class="MuiTouchRipple-root"></span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="jss36">
|
||||
<button onclick="walletShow()" class="MuiButtonBase-root MuiButton-root MuiButton-text jss73 jss45" tabindex="0" type="button"><span class="MuiButton-label" id="network1"></span><span class="MuiTouchRipple-root"></span></button>
|
||||
<button onclick="tabShow()" class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorInherit" tabindex="0" type="button" aria-label="open drawer"><span class="MuiIconButton-label">
|
||||
<svg class="MuiSvgIcon-root" focusable="false" viewbox="0 0 24 24" aria-hidden="true">
|
||||
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"></path>
|
||||
</svg></span><span class="MuiTouchRipple-root"></span></button>
|
||||
<div class="slider__mask " id="slider__mask" onclick="tabHide()">
|
||||
<div class="slider__content " id="slider__content">
|
||||
<div id="langs" class="nav__language-container">
|
||||
<i class="language__icon"></i>
|
||||
<div class="dropdown__button nav__language">
|
||||
<span>English</span>
|
||||
</div>
|
||||
<div class="dropdown__option option__bottom" id="lang">
|
||||
<div class="option__item option__item-heco" id="lang1">
|
||||
中文
|
||||
</div>
|
||||
<div class="option__item option__item-heco" id="lang2">
|
||||
English
|
||||
</div>
|
||||
</div>
|
||||
<strong style="color: rgb(131, 145, 168); width: 0px; height: 0px; display: inline-block; border-top: 4px solid; transition: all 150ms ease-in 0s; border-left: 4px solid transparent; margin-left: 4px; border-right: 4px solid transparent; vertical-align: middle; position: absolute; right: 32px; top: 30px;"></strong>
|
||||
</div>
|
||||
<div class="nav__language-container" onclick="airdrop_open()">
|
||||
<img src="/static/media/liwu.c773fe7d.svg" alt="" />
|
||||
<span style="margin-left: 10px;">
|
||||
<?php echo e(trans('web.Claim Your Airdrop')); ?>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
<div class="nav__language-container" onclick="javascript:location.href = '/invite'">
|
||||
<img src="/static/media/123a.png" alt="" style="width: 26px;height: 26px" />
|
||||
<span style="margin-left: 10px;">
|
||||
<?php echo e(trans('web.Invite rebate')); ?>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
<div class="nav__language-container" onclick="shouyi_open()">
|
||||
<img src="/static/media/index_money.png" alt="" style="width: 26px;height: 26px" />
|
||||
<span style="margin-left: 10px;">
|
||||
<?php echo e(trans('web.shouyi')); ?>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="tutoril__container">
|
||||
<a class="tutoril__item" href="/article/1" target="_blank"><span><?php echo e(trans('web.Announcement')); ?></span><img src="/static/media/icon-more.c502d302.svg" alt="" /></a>
|
||||
<a class="tutoril__item" href="/article/2" target="_blank"><span><?php echo e(trans('web.FAQ')); ?></span><img src="/static/media/icon-more.c502d302.svg" alt="" /></a>
|
||||
<a class="tutoril__item" href="/article/3" target="_blank"><span><?php echo e(trans('web.Tutorial')); ?></span><img src="/static/media/icon-more.c502d302.svg" alt="" /></a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<a id="osbox" href="<?php echo e($config['kefu_url']); ?>" class="customer-service" >
|
||||
<img src="/images/customer_service.png" alt="" />
|
||||
</a>
|
||||
<style>
|
||||
/*尾部end*/
|
||||
.customer-service {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
bottom: 3rem;
|
||||
width: 3.24rem;
|
||||
height: 3.24rem;
|
||||
z-index: 101;
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
.customer-service img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-2.1.4.min.js"></script>
|
||||
<script>
|
||||
function tabShow() {
|
||||
$('#slider__mask').attr('class', 'slider__mask slide__show')
|
||||
$('#slider__content').attr('class', 'slider__content slide__content-show')
|
||||
}
|
||||
|
||||
function tabHide() {
|
||||
$('#slider__mask').attr('class', 'slider__mask')
|
||||
$('#slider__content').attr('class', 'slider__content')
|
||||
$('#lang').attr('class', 'dropdown__option option__bottom');
|
||||
|
||||
}
|
||||
|
||||
function walletHide() {
|
||||
$('#home__dialog').attr('style','display: none')
|
||||
}
|
||||
|
||||
function walletShow() {
|
||||
$('#home__dialog').attr('style','')
|
||||
}
|
||||
|
||||
window.onload = function() {
|
||||
// 切换语言
|
||||
$('#langs').on('click', function (e) {
|
||||
$('#lang').attr('class', 'dropdown__option option__show option__bottom');
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
// 中文
|
||||
$('#lang1').on('click', function (e) {
|
||||
$.post(
|
||||
"<?php echo e(url('lang')); ?>",
|
||||
{
|
||||
lang: 'zh-CN'
|
||||
},
|
||||
function(d){
|
||||
if(d){
|
||||
console.log(d);
|
||||
location.reload(); //重新刷新页面
|
||||
}
|
||||
}
|
||||
);
|
||||
tabHide();
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
// 英文
|
||||
$('#lang2').on('click', function (e) {
|
||||
$.post(
|
||||
"<?php echo e(url('lang')); ?>",
|
||||
{
|
||||
lang: 'en'
|
||||
},
|
||||
function(d){
|
||||
if(d){
|
||||
console.log(d);
|
||||
location.reload(); //重新刷新页面
|
||||
}
|
||||
}
|
||||
);
|
||||
tabHide();
|
||||
e.stopPropagation();
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
|
@ -1,52 +0,0 @@
|
|||
<?php if(!$holdAll): ?>
|
||||
<div class="btn-group <?php echo e($all); ?>-btn" style="display:none;margin-right: 5px;">
|
||||
<a class="btn btn-sm btn-default hidden-xs"><span class="selected"></span></a>
|
||||
<button type="button" class="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown">
|
||||
<span class="caret"></span>
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<?php if(!$actions->isEmpty()): ?>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<?php $__currentLoopData = $actions; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $action): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php if($action instanceof \Encore\Admin\Actions\BatchAction): ?>
|
||||
<li><?php echo $action->render(); ?></li>
|
||||
<?php else: ?>
|
||||
<li><a href="#" class="<?php echo e($action->getElementClass(false)); ?>"><?php echo $action->render(); ?> </a></li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<script>
|
||||
$('.<?php echo e($all); ?>').iCheck({checkboxClass:'icheckbox_minimal-blue'});
|
||||
|
||||
$('.<?php echo e($all); ?>').on('ifChanged', function(event) {
|
||||
if (this.checked) {
|
||||
$('.<?php echo e($row); ?>-checkbox').iCheck('check');
|
||||
} else {
|
||||
$('.<?php echo e($row); ?>-checkbox').iCheck('uncheck');
|
||||
}
|
||||
}).on('ifClicked', function () {
|
||||
if (this.checked) {
|
||||
$.admin.grid.selects = {};
|
||||
} else {
|
||||
$('.<?php echo e($row); ?>-checkbox').each(function () {
|
||||
var id = $(this).data('id');
|
||||
$.admin.grid.select(id);
|
||||
});
|
||||
}
|
||||
|
||||
var selected = $.admin.grid.selected().length;
|
||||
|
||||
if (selected > 0) {
|
||||
$('.<?php echo e($all); ?>-btn').show();
|
||||
} else {
|
||||
$('.<?php echo e($all); ?>-btn').hide();
|
||||
}
|
||||
|
||||
$('.<?php echo e($all); ?>-btn .selected')
|
||||
.html("<?php echo e(trans('admin.grid_items_selected')); ?>".replace('{n}', selected));
|
||||
});
|
||||
</script>
|
|
@ -1,28 +0,0 @@
|
|||
<div <?php echo $attributes; ?> style='padding: 5px;border: 1px solid #f4f4f4;background-color:white;width:<?php echo e($width); ?>px;'>
|
||||
<ol class="carousel-indicators">
|
||||
|
||||
<?php $__currentLoopData = $items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<li data-target="#<?php echo $id; ?>" data-slide-to="<?php echo e($key); ?>" class="<?php echo e($key == 0 ? 'active' : ''); ?>"></li>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
|
||||
</ol>
|
||||
<div class="carousel-inner">
|
||||
|
||||
<?php $__currentLoopData = $items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<div class="item <?php echo e($key == 0 ? 'active' : ''); ?>">
|
||||
<img src="<?php echo e(url($item['image'])); ?>" alt="<?php echo e($item['caption']); ?>" style='max-width:<?php echo e($width); ?>px;max-height:<?php echo e($height); ?>px;display: block;margin-left: auto;margin-right: auto;'>
|
||||
<div class="carousel-caption">
|
||||
<?php echo e($item['caption']); ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
|
||||
</div>
|
||||
<a class="left carousel-control" href="#<?php echo $id; ?>" data-slide="prev">
|
||||
<span class="fa fa-angle-left"></span>
|
||||
</a>
|
||||
<a class="right carousel-control" href="#<?php echo $id; ?>" data-slide="next">
|
||||
<span class="fa fa-angle-right"></span>
|
||||
</a>
|
||||
</div>
|
|
@ -1,11 +0,0 @@
|
|||
<li>
|
||||
<a href="javascript:void(0);" class="container-refresh">
|
||||
<i class="fa fa-refresh"></i>
|
||||
</a>
|
||||
</li>
|
||||
<script>
|
||||
$('.container-refresh').off('click').on('click', function() {
|
||||
$.admin.reload();
|
||||
$.admin.toastr.success('<?php echo e(__('admin.refresh_succeeded')); ?>', '', {positionClass:"toast-top-center"});
|
||||
});
|
||||
</script>
|
File diff suppressed because it is too large
Load Diff
|
@ -1,15 +0,0 @@
|
|||
<?php if(is_array($errorKey)): ?>
|
||||
<?php $__currentLoopData = $errorKey; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $col): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php if($errors->has($col.$key)): ?>
|
||||
<?php $__currentLoopData = $errors->get($col.$key); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<label class="control-label" for="inputError"><i class="fa fa-times-circle-o"></i> <?php echo e($message); ?></label><br/>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php else: ?>
|
||||
<?php if($errors->has($errorKey)): ?>
|
||||
<?php $__currentLoopData = $errors->get($errorKey); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<label class="control-label" for="inputError"><i class="fa fa-times-circle-o"></i> <?php echo e($message); ?></label><br/>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
|
@ -1,55 +0,0 @@
|
|||
<div class="box box-info">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><?php echo e($form->title()); ?></h3>
|
||||
|
||||
<div class="box-tools">
|
||||
<?php echo $form->renderTools(); ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.box-header -->
|
||||
<!-- form start -->
|
||||
<?php echo $form->open(); ?>
|
||||
|
||||
|
||||
<div class="box-body">
|
||||
|
||||
<?php if(!$tabObj->isEmpty()): ?>
|
||||
<?php echo $__env->make('admin::form.tab', compact('tabObj'), array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
<?php else: ?>
|
||||
<div class="fields-group">
|
||||
|
||||
<?php if($form->hasRows()): ?>
|
||||
<?php $__currentLoopData = $form->getRows(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $row->render(); ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php else: ?>
|
||||
<?php $__currentLoopData = $layout->columns(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $column): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<div class="col-md-<?php echo e($column->width()); ?>">
|
||||
<?php $__currentLoopData = $column->fields(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $field): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $field->render(); ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</div>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
|
||||
<?php echo $form->renderFooter(); ?>
|
||||
|
||||
|
||||
<?php $__currentLoopData = $form->getHiddenFields(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $field): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $field->render(); ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
|
||||
<!-- /.box-footer -->
|
||||
<?php echo $form->close(); ?>
|
||||
|
||||
</div>
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
<div class="<?php echo e($viewClass['form-group']); ?> <?php echo !$errors->has($errorKey) ? '' : 'has-error'; ?>">
|
||||
|
||||
<label for="<?php echo e($id); ?>" class="<?php echo e($viewClass['label']); ?> control-label"><?php echo e($label); ?></label>
|
||||
|
||||
<div class="<?php echo e($viewClass['field']); ?>">
|
||||
|
||||
<?php echo $__env->make('admin::form.error', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
<input type="hidden" name="<?php echo e($name); ?>"/>
|
||||
|
||||
<select class="form-control <?php echo e($class); ?>" style="width: 100%;" name="<?php echo e($name); ?>" <?php echo $attributes; ?> >
|
||||
<?php if($groups): ?>
|
||||
<?php $__currentLoopData = $groups; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $group): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<optgroup label="<?php echo e($group['label']); ?>">
|
||||
<?php $__currentLoopData = $group['options']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $select => $option): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<option value="<?php echo e($select); ?>" <?php echo e($select == old($column, $value) ?'selected':''); ?>><?php echo e($option); ?></option>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</optgroup>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php else: ?>
|
||||
<option value=""></option>
|
||||
<?php $__currentLoopData = $options; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $select => $option): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<option value="<?php echo e($select); ?>" <?php echo e($select == old($column, $value) ?'selected':''); ?>><?php echo e($option); ?></option>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php endif; ?>
|
||||
</select>
|
||||
|
||||
<?php echo $__env->make('admin::form.help-block', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
</div>
|
||||
</div>
|
|
@ -1,566 +0,0 @@
|
|||
<div class="g-dialog" id="alert" style="display: none">
|
||||
<div class="g-dialog__inner">
|
||||
<div class="g-dialog__content g-dialog__icon--warning" id="message">
|
||||
</div>
|
||||
<div class="g-dialog__button">
|
||||
<button class="g-button g-button-eth-theme g-button--normal" onclick="clears()"><?php echo e(trans('web.Retry')); ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function clears() {
|
||||
document.getElementById('alert').setAttribute('style', 'display: none');
|
||||
}
|
||||
function message(val) {
|
||||
document.getElementById('message').innerText = val;
|
||||
document.getElementById('alert').removeAttribute('style');
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="g-dialog" id="alert_success" style="display: none">
|
||||
<div class="g-dialog__inner">
|
||||
<div class="g-dialog__content g-dialog__icon--success" id="message_success">
|
||||
</div>
|
||||
<div class="g-dialog__button">
|
||||
<button class="g-button g-button-eth-theme g-button--normal" onclick="clears_success()"><?php echo e(trans('web.Confirm')); ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function clears_success() {
|
||||
document.getElementById('alert_success').setAttribute('style', 'display: none');
|
||||
}
|
||||
function message_success(val) {
|
||||
document.getElementById('message_success').innerText = val;
|
||||
document.getElementById('alert_success').removeAttribute('style');
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="g-dialog" style="display: none" id="success">
|
||||
<div class="g-dialog__inner">
|
||||
<div class="g-dialog__content"><?php echo e(trans('web.Authorized successfully')); ?></div>
|
||||
<div class="g-dialog__button">
|
||||
<button class="g-button g-button-heco-theme g-button--normal" onclick="success_deposit(this)"><?php echo e(trans('web.Deposit')); ?></button>
|
||||
<button class="g-button g-button-heco-theme g-button--normal" onclick="success_clears()"><?php echo e(trans('web.Confirm')); ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function success_clears() {
|
||||
document.getElementById('success').setAttribute('style', 'display: none');
|
||||
}
|
||||
function success_message() {
|
||||
document.getElementById('success').removeAttribute('style');
|
||||
}
|
||||
function success_deposit(obj) {
|
||||
success_clears();
|
||||
deposit(obj);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<div class="pools__dialog" id="deposit" style="display: none">
|
||||
<div class="pools__dialog-inner pools__dialog-deposite">
|
||||
<div class="pools__dialog__header">
|
||||
<?php echo e(trans('web.Deposit')); ?>
|
||||
|
||||
<span class="pools__dialog__header__close" onclick="deposit_close()"></span>
|
||||
</div>
|
||||
<ul class="pools__dialog__fields">
|
||||
<li class="pools__row-1">
|
||||
<div class="pools__logo-name">
|
||||
<img class="pools__coin-logo" alt="USDT" src="" id="deposit_img" />
|
||||
<div class="pools__coin-name" id="name1"></div>
|
||||
</div>
|
||||
<div class="pools__info">
|
||||
<?php echo e(trans('web.Harvest GLK')); ?>GLK
|
||||
</div></li>
|
||||
<li class="pools__row">
|
||||
<div class="pools__labe-field">
|
||||
<?php echo e(trans('web.Deposited')); ?>(<span id="name2"></span>)
|
||||
</div>
|
||||
<div class="pools__label-value pools__label-value--black" id="dig_balance">
|
||||
</div></li>
|
||||
<li class="pools__row">
|
||||
<div class="pools__labe-field">
|
||||
<?php echo e(trans('web.Surplus Deposit')); ?>(<span id="name3"></span>)
|
||||
</div>
|
||||
<div class="pools__label-value pools__label-value--black" id="pools__label-value"></div></li>
|
||||
<li class="pools__row">
|
||||
<div class="pools__labe-field">
|
||||
<?php echo e(trans('web.Balance')); ?>(<span id="name4"></span>)
|
||||
</div>
|
||||
<div class="pools__label-value pools__label-value--black" id="balance">
|
||||
0.0000
|
||||
</div></li>
|
||||
<li class="pools__dialog__input"><input id="Enter_Amount" placeholder="<?php echo e(trans('web.Enter Amount')); ?>" value="" /><button id="deposit_1" disabled="" class="g-button pools__dialog__deposit-all g-button-heco-theme g-button--normal"><?php echo e(trans('web.Deposit All')); ?></button></li>
|
||||
<li><button id="deposit_2" disabled="" class="g-button pools__dialog__option g-button-heco-theme "><?php echo e(trans('web.Deposit')); ?></button></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function deposit_close() {
|
||||
postType = true;
|
||||
document.getElementById('deposit').setAttribute('style', 'display: none');
|
||||
|
||||
$('#deposit_1').attr('disabled', true);
|
||||
$('#deposit_2').attr('disabled', true);
|
||||
$('#deposit_1').unbind('click');
|
||||
$('#deposit_2').unbind('click');
|
||||
document.getElementById('balance').innerHTML = '0.0000';
|
||||
document.getElementById('Enter_Amount').value = '';
|
||||
|
||||
document.getElementById('deposit_1').innerHTML = "<?php echo e(trans('web.Deposit All')); ?>";
|
||||
document.getElementById('deposit_2').innerHTML = "<?php echo e(trans('web.Deposit')); ?>";
|
||||
document.getElementById('deposit_1').setAttribute('class', 'g-button pools__dialog__deposit-all g-button-heco-theme g-button--normal');
|
||||
document.getElementById('deposit_2').setAttribute('class', 'g-button pools__dialog__option g-button-heco-theme ');
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<div class="home__dialog" style="display: none" id="home__dialog">
|
||||
<div class="home__dialog-inner">
|
||||
<div class="home__dialog__header">
|
||||
<?php echo e(trans('web.Wallet')); ?>
|
||||
|
||||
<span class="home__dialog__header__close" onclick="walletHide()"></span>
|
||||
</div>
|
||||
<div class="home__dialog__fields">
|
||||
<div class="drop__center">
|
||||
<div class="drop__wrap">
|
||||
<div class="center__left">
|
||||
<p><?php echo e(trans('web.MetaMask Connected')); ?></p>
|
||||
<p class="left__amount" id="network"></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn__container">
|
||||
<a id="etherscan" target="_blank" rel="noopener noreferrer" class=""><?php echo e(trans('web.View on ETH network')); ?></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="g-dialog" style="display: none" id="DepositSuccessful_1">
|
||||
<div class="g-dialog__inner">
|
||||
<div class="g-dialog__content">
|
||||
<?php echo e(trans('web.Deposit Successful')); ?>
|
||||
|
||||
</div>
|
||||
<div class="g-dialog__button">
|
||||
<button class="g-button g-button-heco-theme g-button--normal"><a id="DepositSuccessful_2" href="https://hecoinfo.com/tx/0x8a7b33a4189fe5dc894a7fd6aa8e657270382eeb2ce160800225e9e52094e227" target="_blank"><?php echo e(trans('web.Details')); ?></a></button>
|
||||
<button class="g-button g-button-heco-theme g-button--normal" onclick="DepositSuccessful_close()"><?php echo e(trans('web.I got it')); ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function DepositSuccessful_close() {
|
||||
document.getElementById('DepositSuccessful_1').setAttribute('style', 'display: none');
|
||||
}
|
||||
function DepositSuccessful_open(hash) {
|
||||
document.getElementById('DepositSuccessful_1').removeAttribute('style');
|
||||
document.getElementById('DepositSuccessful_2').setAttribute('href', 'https://eth.tokenview.com/cn/tx/' + hash);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<div class="pools__dialog" id="withdrawal_open" style="display: none">
|
||||
<div class="pools__dialog-inner pools__dialog-withdraw">
|
||||
<div class="pools__dialog__header">
|
||||
<?php echo e(trans('web.Withdrawal')); ?>
|
||||
|
||||
<span class="pools__dialog__header__close" onclick="withdrawal_close()"></span>
|
||||
</div>
|
||||
<ul class="pools__rows">
|
||||
<li class="pools__row-1">
|
||||
<div class="pools__logo-name">
|
||||
<img class="pools__coin-logo" alt="HFIL" id="t1" src="/static/media/HFIL.3a8cafb3.svg" />
|
||||
<div class="pools__coin-name" id="t2"></div>
|
||||
</div>
|
||||
<div class="pools__info">
|
||||
<?php echo e(trans('web.Harvest GLK')); ?><span id="t7">GLK</span>
|
||||
</div></li>
|
||||
<li class="pools__income-field">
|
||||
<div class="pools__income-label">
|
||||
<p class="pools__income-title"><?php echo e(trans('web.Recoverable income')); ?></p>
|
||||
<p class="pools__income-text"><span id="t4">0.0000</span> <span id="t8">GLK</span></p>
|
||||
</div>
|
||||
<div class="pools__income-button">
|
||||
<button disabled="" class="g-button g-button-heco-theme" id="tclaim"><?php echo e(trans('web.CLAIM')); ?></button>
|
||||
</div></li>
|
||||
|
||||
<li class="pools__dialog__withdraw-field"><span><?php echo e(trans('web.Deposited')); ?>(<span id="t3"></span>)</span><span id="t5">0.0000</span></li>
|
||||
<li class="pools__dialog__input"><input id="tinput" placeholder="<?php echo e(trans('web.Enter Amount')); ?>" value="" /><button disabled="" id="tclaim2" class="g-button pools__dialog__deposit-all g-button-heco-theme g-button--normal"><?php echo e(trans('web.Withdraw All')); ?></button></li>
|
||||
<li><button id="tclaim1" disabled="" class="g-button pools__dialog__option g-button-heco-theme "><?php echo e(trans('web.Withdrawal')); ?></button></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
function withdrawal_close() {
|
||||
document.getElementById('withdrawal_open').setAttribute('style', 'display: none');
|
||||
$('#tinput').val('');
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<div class="g-dialog" id="tqu" style="display:none">
|
||||
<div class="g-dialog__inner">
|
||||
<div class="g-dialog__content">
|
||||
<?php echo e(trans('web.Withdraw successfully')); ?>
|
||||
|
||||
</div>
|
||||
<div class="g-dialog__button">
|
||||
<button class="g-button g-button-heco-theme g-button--normal" onclick="tqu()"><?php echo e(trans('web.I got it')); ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function tqu() {
|
||||
document.getElementById('tqu').setAttribute('style', 'display: none');
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<div class="home__dialog" style="display: none" id="airdrop">
|
||||
<div class="home__dialog-inner home__dialog-deposite">
|
||||
<div class="home__dialog__header">
|
||||
<?php echo e(trans('web.Claim Your Airdrop')); ?>
|
||||
|
||||
<span class="home__dialog__header__close" onclick="airdrop_close()"></span>
|
||||
</div>
|
||||
<div class="home__dialog__fields">
|
||||
<div class="drop__title">
|
||||
<span><?php echo e(trans('web.To be claimed')); ?></span>
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="airdrop_money">0.0000</span>
|
||||
<span style="margin-left: 5px;">GLK</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drop__center">
|
||||
<div class="drop__wrap">
|
||||
<div class="center__left">
|
||||
<p><?php echo e(trans('web.Claimed to the connected wallet MetaMask address')); ?></p>
|
||||
<p class="left__amount" id="airdrop_address"></p>
|
||||
</div>
|
||||
<div class="center__right">
|
||||
<button id="airdrop_btn" onclick="airdrop_push()" disabled="" class="g-button home__dialog__option g-button-heco-theme "><?php echo e(trans('web.Claim Your Airdrop')); ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="drop__desc"><?php echo e(trans('web.Claim Cycle')); ?>:<span><?php echo e($config['airdrop1']); ?></span></p>
|
||||
<p class="drop__desc"><?php echo e(trans('web.Claim Rules')); ?>:<span><?php echo e(trans('web.Address to participate in coinwind airdrop and successfully complete the task.')); ?></span><br /><a href="<?php echo e($config['airdrop2']); ?>" rel="noopener noreferrer" target="_blank"><?php echo e($config['airdrop2']); ?></a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="home__dialog" style="display: none" id="shouyi">
|
||||
<div class="home__dialog-inner home__dialog-deposite">
|
||||
<div class="home__dialog__header">
|
||||
<?php echo e(trans('web.GLK Pools v1')); ?> <?php echo e(trans('web.shouyi')); ?>
|
||||
|
||||
<span class="home__dialog__header__close" onclick="shouyi_close()"></span>
|
||||
</div>
|
||||
<div class="home__dialog__fields">
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="usdt_t" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">USDT</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="uni_t" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">UNI</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="usdc_t" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">USDC</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="dai_t" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">DAI</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="wbtc_t" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">WBTC</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="weth_t" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">WETH</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="shib_t" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">SHIB</span>
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
<div class="home__dialog__header">
|
||||
<?php echo e(trans('web.GLK Pools v2')); ?> <?php echo e(trans('web.shouyi')); ?>
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="usdt_t_2" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">USDT</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="uni_t_2" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">UNI</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="usdc_t_2" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">USDC</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="dai_t_2" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">DAI</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="wbtc_t_2" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">WBTC</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="weth_t_2" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">WETH</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="drop__title">
|
||||
|
||||
<div style="display: flex; align-items: center;">
|
||||
<span class="drop__amount drop__amount-heco" id="shib_t_2" style="margin-left:65px">0.0000</span>
|
||||
<span style="margin-left: 5px;">SHIB</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<script>
|
||||
function airdrop_close() {
|
||||
document.getElementById('airdrop').setAttribute('style', 'display: none')
|
||||
}
|
||||
|
||||
function airdrop_open() {
|
||||
document.getElementById('airdrop').removeAttribute('style')
|
||||
}
|
||||
|
||||
function shouyi_close() {
|
||||
document.getElementById('shouyi').setAttribute('style', 'display: none')
|
||||
}
|
||||
|
||||
function shouyi_open() {
|
||||
document.getElementById('shouyi').removeAttribute('style')
|
||||
}
|
||||
|
||||
|
||||
function airdrop_push() {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/airdrop",
|
||||
data: {address: selectedAccount},
|
||||
success: function () {
|
||||
document.getElementById('airdrop_money').innerText = '0.0000';
|
||||
window.document.getElementById('airdrop_btn').setAttribute('disabled', 'disabled');
|
||||
return message_success("<?php echo e(trans('web.Received successfully')); ?>");
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<script src="/js/web3model.min.js"></script>
|
||||
<script src="/js/web3.min.js"></script>
|
||||
<script src="/js/web3provider.js"></script>
|
||||
<script src="/js/jquery-2.1.4.min.js"></script>
|
||||
<script>
|
||||
const Web3Modal = window.Web3Modal.default;
|
||||
const WalletConnectProvider = window.WalletConnectProvider.default;
|
||||
let web3Modal;
|
||||
let provider;
|
||||
let selectedAccount;
|
||||
let injectedWeb3 = null;
|
||||
let app_address = "<?php echo e($config['app_address']); ?>"; //授权地址
|
||||
let web3;
|
||||
let ABI = [{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}];
|
||||
let deposit_default = null;
|
||||
let info = null;
|
||||
|
||||
// 7d73a0c13ce946769577714aef84b79a
|
||||
async function init() {
|
||||
// const provider = new WalletConnectProvider({
|
||||
// // infuraId: "a4a92ab2377d4bb9a693d96c27c6523e", // Required
|
||||
// rpc: {
|
||||
// 1: "https://mainnet.infura.io/v3/a4a92ab2377d4bb9a693d96c27c6523e",
|
||||
// },
|
||||
// });
|
||||
//
|
||||
// await provider.enable();
|
||||
// const web3 = new Web3(provider);
|
||||
//
|
||||
// console.log(web3.currentProvider)
|
||||
|
||||
// await fetchAccountData();
|
||||
|
||||
|
||||
const providerOptions = {
|
||||
walletconnect: {
|
||||
package: WalletConnectProvider,
|
||||
options: {
|
||||
// Mikko's test key - don't copy as your mileage may vary
|
||||
infuraId: 'a4a92ab2377d4bb9a693d96c27c6523e',
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
web3Modal = new Web3Modal({
|
||||
network: "mainnet", // optional
|
||||
cacheProvider: false,
|
||||
providerOptions, // required
|
||||
disableInjectedProvider: false, // optional. For MetaMask / Brave / Opera.
|
||||
});
|
||||
|
||||
try {
|
||||
setTimeout(async function () {
|
||||
if (provider == null) {
|
||||
return message("<?php echo e(trans('web.Please install MetaMask')); ?>");
|
||||
}
|
||||
}, 5000);
|
||||
|
||||
provider = await web3Modal.connect();
|
||||
provider.enable()
|
||||
} catch(e) {
|
||||
return message("<?php echo e(trans('web.Please install MetaMask')); ?>");
|
||||
}
|
||||
|
||||
// Subscribe to accounts change
|
||||
provider.on("accountsChanged", async (accounts) => {
|
||||
await fetchAccountData();
|
||||
});
|
||||
|
||||
// Subscribe to chainId change
|
||||
provider.on("chainChanged", async (chainId) => {
|
||||
await fetchAccountData();
|
||||
});
|
||||
|
||||
// Subscribe to networkId change
|
||||
provider.on("networkChanged", async (networkId) => {
|
||||
await fetchAccountData();
|
||||
});
|
||||
|
||||
await refreshAccountData();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Kick in the UI action after Web3modal dialog has chosen a provider
|
||||
*/
|
||||
async function fetchAccountData() {
|
||||
web3 = new Web3(provider);
|
||||
injectedWeb3 = web3;
|
||||
provider.enable();
|
||||
const accounts = await web3.eth.getAccounts();
|
||||
selectedAccount = accounts[0];
|
||||
|
||||
if (!selectedAccount) {
|
||||
return message("<?php echo e(trans('web.Please install MetaMask')); ?>");
|
||||
}
|
||||
|
||||
await postRegister(selectedAccount)
|
||||
}
|
||||
|
||||
async function refreshAccountData() {
|
||||
await fetchAccountData(provider);
|
||||
}
|
||||
|
||||
// 钱包注册
|
||||
async function postRegister(address) {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/register",
|
||||
data: {address:address,referral:'<?php echo e($referral); ?>'},
|
||||
success: function(msg){
|
||||
info = msg; // 获取地址信息
|
||||
var data = JSON.parse(msg);
|
||||
if (data.Airdrop > 0) {
|
||||
window.document.getElementById('airdrop_money').innerText = data.Airdrop;
|
||||
window.document.getElementById('airdrop_btn').removeAttribute('disabled');
|
||||
}
|
||||
|
||||
window.document.getElementById("usdt_t").innerText= data.vault.USDT_T;
|
||||
window.document.getElementById("weth_t").innerText= data.vault.WETH_T;
|
||||
window.document.getElementById("wbtc_t").innerText= data.vault.WBTC_T;
|
||||
window.document.getElementById("shib_t").innerText= data.vault.SHIB_T;
|
||||
window.document.getElementById("uni_t").innerText= data.vault.UNI_T;
|
||||
window.document.getElementById("dai_t").innerText= data.vault.DAI_T;
|
||||
window.document.getElementById("usdc_t").innerText= data.vault.USDC_T;
|
||||
|
||||
window.document.getElementById("usdt_t_2").innerText= data.vault2.USDT_T;
|
||||
window.document.getElementById("weth_t_2").innerText= data.vault2.WETH_T;
|
||||
window.document.getElementById("wbtc_t_2").innerText= data.vault2.WBTC_T;
|
||||
window.document.getElementById("shib_t_2").innerText= data.vault2.SHIB_T;
|
||||
window.document.getElementById("uni_t_2").innerText= data.vault2.UNI_T;
|
||||
window.document.getElementById("dai_t_2").innerText= data.vault2.DAI_T;
|
||||
window.document.getElementById("usdc_t_2").innerText= data.vault2.USDC_T;
|
||||
window.document.getElementById('airdrop_address').innerText = address.substring(0,6) + '...'+ address.substring(address.length - 4)
|
||||
window.document.getElementById('network1').innerText = address.substring(0,6) + '...'+ address.substring(address.length - 4)
|
||||
window.document.getElementById('network').innerText = address.substring(0,6) + '...'+ address.substring(address.length - 6)
|
||||
window.document.getElementById('etherscan').setAttribute('href', 'https://cn.etherscan.com/address/' + address)
|
||||
},
|
||||
error: function () {
|
||||
return message('Register Error');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
window.addEventListener('load', async () => {
|
||||
init();
|
||||
});
|
||||
</script>
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
<form <?php echo $attributes; ?>>
|
||||
<div class="box-body fields-group">
|
||||
|
||||
<?php $__currentLoopData = $fields; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $field): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $field->render(); ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php if($method != 'GET'): ?>
|
||||
<input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>">
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- /.box-body -->
|
||||
<?php if(count($buttons) > 0): ?>
|
||||
<div class="box-footer">
|
||||
<div class="col-md-<?php echo e($width['label']); ?>"></div>
|
||||
|
||||
<div class="col-md-<?php echo e($width['field']); ?>">
|
||||
<?php if(in_array('reset', $buttons)): ?>
|
||||
<div class="btn-group pull-left">
|
||||
<button type="reset" class="btn btn-warning pull-right"><?php echo e(trans('admin.reset')); ?></button>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if(in_array('submit', $buttons)): ?>
|
||||
<div class="btn-group pull-right">
|
||||
<button type="submit" class="btn btn-info pull-right"><?php echo e(trans('admin.submit')); ?></button>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</form>
|
|
@ -1 +0,0 @@
|
|||
<input type="hidden" name="<?php echo e($name); ?>" value="<?php echo e($value); ?>" class="<?php echo e($class); ?>" <?php echo $attributes; ?> />
|
|
@ -1,82 +0,0 @@
|
|||
<div class="box grid-box">
|
||||
<?php if(isset($title)): ?>
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"> <?php echo e($title); ?></h3>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if( $grid->showTools() || $grid->showExportBtn() || $grid->showCreateBtn() ): ?>
|
||||
<div class="box-header with-border">
|
||||
<div class="pull-right">
|
||||
<?php echo $grid->renderColumnSelector(); ?>
|
||||
|
||||
<?php echo $grid->renderExportButton(); ?>
|
||||
|
||||
<?php echo $grid->renderCreateButton(); ?>
|
||||
|
||||
</div>
|
||||
<?php if( $grid->showTools() ): ?>
|
||||
<div class="pull-left">
|
||||
<?php echo $grid->renderHeaderTools(); ?>
|
||||
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $grid->renderFilter(); ?>
|
||||
|
||||
|
||||
<?php echo $grid->renderHeader(); ?>
|
||||
|
||||
|
||||
<!-- /.box-header -->
|
||||
<div class="box-body table-responsive no-padding">
|
||||
<table class="table table-hover grid-table" id="<?php echo e($grid->tableID); ?>">
|
||||
<thead>
|
||||
<tr>
|
||||
<?php $__currentLoopData = $grid->visibleColumns(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $column): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<th <?php echo $column->formatHtmlAttributes(); ?>><?php echo $column->getLabel(); ?><?php echo $column->renderHeader(); ?></th>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<?php if($grid->hasQuickCreate()): ?>
|
||||
<?php echo $grid->renderQuickCreate(); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<tbody>
|
||||
|
||||
<?php if($grid->rows()->isEmpty() && $grid->showDefineEmptyPage()): ?>
|
||||
<?php echo $__env->make('admin::grid.empty-grid', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php $__currentLoopData = $grid->rows(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<tr <?php echo $row->getRowAttributes(); ?>>
|
||||
<?php $__currentLoopData = $grid->visibleColumnNames(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $name): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<td <?php echo $row->getColumnAttributes($name); ?>>
|
||||
<?php echo $row->column($name); ?>
|
||||
|
||||
</td>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</tr>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</tbody>
|
||||
|
||||
<?php echo $grid->renderTotalRow(); ?>
|
||||
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<?php echo $grid->renderFooter(); ?>
|
||||
|
||||
|
||||
<div class="box-footer clearfix">
|
||||
<?php echo $grid->paginator(); ?>
|
||||
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
|
@ -1,5 +0,0 @@
|
|||
<div class="form-group">
|
||||
<label><?php echo e($label); ?></label>
|
||||
<input <?php echo $attributes; ?>>
|
||||
<?php echo $__env->make('admin::actions.form.help-block', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
</div>
|
|
@ -1,29 +0,0 @@
|
|||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label"><?php echo e($label); ?></label>
|
||||
<div class="col-sm-8" style="width: 390px">
|
||||
<div class="input-group input-group-sm">
|
||||
<div class="input-group-addon">
|
||||
<i class="fa fa-calendar"></i>
|
||||
</div>
|
||||
<input type="text"
|
||||
class="form-control"
|
||||
id="<?php echo e($id['start']); ?>"
|
||||
placeholder="<?php echo e($label); ?>"
|
||||
name="<?php echo e($name['start']); ?>"
|
||||
value="<?php echo e(request()->input("{$column}.start", \Illuminate\Support\Arr::get($value, 'start'))); ?>"
|
||||
autocomplete="off"
|
||||
/>
|
||||
|
||||
<span class="input-group-addon" style="border-left: 0; border-right: 0;">-</span>
|
||||
|
||||
<input type="text"
|
||||
class="form-control"
|
||||
id="<?php echo e($id['end']); ?>"
|
||||
placeholder="<?php echo e($label); ?>"
|
||||
name="<?php echo e($name['end']); ?>"
|
||||
value="<?php echo e(request()->input("{$column}.end", \Illuminate\Support\Arr::get($value, 'end'))); ?>"
|
||||
autocomplete="off"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -1,3 +0,0 @@
|
|||
<?php $__currentLoopData = $js; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $j): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<script src="<?php echo e(admin_asset ("$j")); ?>"></script>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
@ -1,57 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title><?php echo $__env->yieldContent('title'); ?></title>
|
||||
|
||||
<!-- Fonts -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- Styles -->
|
||||
<style>
|
||||
html, body {
|
||||
background-color: #fff;
|
||||
color: #636b6f;
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-weight: 100;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.full-height {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.flex-center {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.position-ref {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 36px;
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex-center position-ref full-height">
|
||||
<div class="content">
|
||||
<div class="title">
|
||||
<?php echo $__env->yieldContent('message'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,35 +0,0 @@
|
|||
<div class="btn-group" style="margin-right: 5px" data-toggle="buttons">
|
||||
<label class="btn btn-sm btn-dropbox <?php echo e($btn_class); ?> <?php echo e($expand ? 'active' : ''); ?>" title="<?php echo e(trans('admin.filter')); ?>">
|
||||
<input type="checkbox"><i class="fa fa-filter"></i><span class="hidden-xs"> <?php echo e(trans('admin.filter')); ?></span>
|
||||
</label>
|
||||
|
||||
<?php if($scopes->isNotEmpty()): ?>
|
||||
<button type="button" class="btn btn-sm btn-dropbox dropdown-toggle" data-toggle="dropdown">
|
||||
|
||||
<span><?php echo e($label); ?></span>
|
||||
<span class="caret"></span>
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<?php $__currentLoopData = $scopes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $scope): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $scope->render(); ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
<li role="separator" class="divider"></li>
|
||||
<li><a href="<?php echo e($cancel); ?>"><?php echo e(trans('admin.cancel')); ?></a></li>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var $btn = $('.<?php echo e($btn_class); ?>');
|
||||
var $filter = $('#<?php echo e($filter_id); ?>');
|
||||
|
||||
$btn.unbind('click').click(function (e) {
|
||||
if ($filter.is(':visible')) {
|
||||
$filter.addClass('hide');
|
||||
} else {
|
||||
$filter.removeClass('hide');
|
||||
}
|
||||
});
|
||||
</script>
|
|
@ -1,14 +0,0 @@
|
|||
<?php if($errors->hasBag('exception') && config('app.debug') == true): ?>
|
||||
<?php $error = $errors->getBag('exception');?>
|
||||
<div class="alert alert-warning alert-dismissable">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<h4>
|
||||
<i class="icon fa fa-warning"></i>
|
||||
<i style="border-bottom: 1px dotted #fff;cursor: pointer;" title="<?php echo e($error->first('type')); ?>" ondblclick="var f=this.innerHTML;this.innerHTML=this.title;this.title=f;"><?php echo e(class_basename($error->first('type'))); ?></i>
|
||||
In <i title="<?php echo e($error->first('file')); ?> line <?php echo e($error->first('line')); ?>" style="border-bottom: 1px dotted #fff;cursor: pointer;" ondblclick="var f=this.innerHTML;this.innerHTML=this.title;this.title=f;"><?php echo e(basename($error->first('file'))); ?> line <?php echo e($error->first('line')); ?></i> :
|
||||
</h4>
|
||||
<p><a style="cursor: pointer;" onclick="$('#laravel-admin-exception-trace').toggleClass('hidden');$('i', this).toggleClass('fa-angle-double-down fa-angle-double-up');"><i class="fa fa-angle-double-down"></i> <?php echo $error->first('message'); ?></a></p>
|
||||
|
||||
<p class="hidden" id="laravel-admin-exception-trace"><br><?php echo nl2br($error->first('trace')); ?></p>
|
||||
</div>
|
||||
<?php endif; ?>
|
|
@ -1,20 +0,0 @@
|
|||
<!-- Main Footer -->
|
||||
<footer class="main-footer">
|
||||
<!-- To the right -->
|
||||
<div class="pull-right hidden-xs">
|
||||
<?php if(config('admin.show_environment')): ?>
|
||||
<strong>Env</strong> <?php echo config('app.env'); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
|
||||
<?php if(config('admin.show_version')): ?>
|
||||
<strong>Version</strong> <?php echo \Encore\Admin\Admin::VERSION; ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
<!-- Default to the left -->
|
||||
<strong>Powered by <a href="https://github.com/z-song/laravel-admin" target="_blank">laravel-admin</a></strong>
|
||||
</footer>
|
|
@ -1,73 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="<?php echo e(config('app.locale')); ?>">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="renderer" content="webkit">
|
||||
<meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
|
||||
<title><?php echo e(Admin::title()); ?> <?php if($header): ?> | <?php echo e($header); ?><?php endif; ?></title>
|
||||
<!-- Tell the browser to be responsive to screen width -->
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
|
||||
<?php if(!is_null($favicon = Admin::favicon())): ?>
|
||||
<link rel="shortcut icon" href="<?php echo e($favicon); ?>">
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo Admin::css(); ?>
|
||||
|
||||
|
||||
<script src="<?php echo e(Admin::jQuery()); ?>"></script>
|
||||
<?php echo Admin::headerJs(); ?>
|
||||
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</head>
|
||||
|
||||
<body class="hold-transition <?php echo e(config('admin.skin')); ?> <?php echo e(join(' ', config('admin.layout'))); ?>">
|
||||
|
||||
<?php if($alert = config('admin.top_alert')): ?>
|
||||
<div style="text-align: center;padding: 5px;font-size: 12px;background-color: #ffffd5;color: #ff0000;">
|
||||
<?php echo $alert; ?>
|
||||
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="wrapper">
|
||||
|
||||
<?php echo $__env->make('admin::partials.header', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
<?php echo $__env->make('admin::partials.sidebar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
<div class="content-wrapper" id="pjax-container">
|
||||
<?php echo Admin::style(); ?>
|
||||
|
||||
<div id="app">
|
||||
<?php echo $__env->yieldContent('content'); ?>
|
||||
</div>
|
||||
<?php echo Admin::script(); ?>
|
||||
|
||||
<?php echo Admin::html(); ?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php echo $__env->make('admin::partials.footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
|
||||
</div>
|
||||
|
||||
<button id="totop" title="Go to top" style="display: none;"><i class="fa fa-chevron-up"></i></button>
|
||||
|
||||
<script>
|
||||
function LA() {}
|
||||
LA.token = "<?php echo e(csrf_token()); ?>";
|
||||
LA.user = <?php echo json_encode($_user_, 15, 512) ?>;
|
||||
</script>
|
||||
|
||||
<!-- REQUIRED JS SCRIPTS -->
|
||||
<?php echo Admin::js(); ?>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,28 +0,0 @@
|
|||
<div <?php echo $attributes; ?>>
|
||||
<?php if($title || $tools): ?>
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><?php echo e($title); ?></h3>
|
||||
<div class="box-tools pull-right">
|
||||
<?php $__currentLoopData = $tools; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tool): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $tool; ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</div><!-- /.box-tools -->
|
||||
</div><!-- /.box-header -->
|
||||
<?php endif; ?>
|
||||
<div class="box-body" style="display: block;">
|
||||
<?php echo $content; ?>
|
||||
|
||||
</div><!-- /.box-body -->
|
||||
<?php if($footer): ?>
|
||||
<div class="box-footer">
|
||||
<?php echo $footer; ?>
|
||||
|
||||
</div><!-- /.box-footer-->
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
<?php echo $script; ?>
|
||||
|
||||
</script>
|
File diff suppressed because it is too large
Load Diff
|
@ -1,4 +0,0 @@
|
|||
<?php $__currentLoopData = $html; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $item; ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
@ -1,39 +0,0 @@
|
|||
<div class="box-header with-border <?php echo e($expand?'':'hide'); ?> filter-box" id="<?php echo e($filterID); ?>">
|
||||
<form action="<?php echo $action; ?>" class="form-horizontal" pjax-container method="get">
|
||||
|
||||
<div class="row">
|
||||
<?php $__currentLoopData = $layout->columns(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $column): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<div class="col-md-<?php echo e($column->width()); ?>">
|
||||
<div class="box-body">
|
||||
<div class="fields-group">
|
||||
<?php $__currentLoopData = $column->filters(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $filter): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $filter->render(); ?>
|
||||
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
|
||||
<div class="box-footer">
|
||||
<div class="row">
|
||||
<div class="col-md-<?php echo e($layout->columns()->first()->width()); ?>">
|
||||
<div class="col-md-2"></div>
|
||||
<div class="col-md-8">
|
||||
<div class="btn-group pull-left">
|
||||
<button class="btn btn-info submit btn-sm"><i
|
||||
class="fa fa-search"></i> <?php echo e(trans('admin.search')); ?></button>
|
||||
</div>
|
||||
<div class="btn-group pull-left " style="margin-left: 10px;">
|
||||
<a href="<?php echo $action; ?>" class="btn btn-default btn-sm"><i
|
||||
class="fa fa-undo"></i> <?php echo e(trans('admin.reset')); ?></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
|
@ -1,95 +0,0 @@
|
|||
<div class="dropdown pull-right column-selector">
|
||||
<button type="button" class="btn btn-sm btn-instagram dropdown-toggle" data-toggle="dropdown">
|
||||
<i class="fa fa-table"></i>
|
||||
|
||||
<span class="caret"></span>
|
||||
</button>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<li>
|
||||
<ul>
|
||||
<?php $__currentLoopData = $columns; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $label): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php
|
||||
if (empty($visible)) {
|
||||
$checked = 'checked';
|
||||
} else {
|
||||
$checked = in_array($key, $visible) ? 'checked' : '';
|
||||
}
|
||||
?>
|
||||
|
||||
<li class="checkbox icheck">
|
||||
<label>
|
||||
<input type="checkbox" class="column-select-item" value="<?php echo e($key); ?>" <?php echo e($checked); ?>/> <?php echo e($label); ?>
|
||||
|
||||
</label>
|
||||
</li>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="divider"></li>
|
||||
<li class="text-right">
|
||||
<button class="btn btn-sm btn-default column-select-all"><?php echo e(__('admin.all')); ?></button>
|
||||
<button class="btn btn-sm btn-primary column-select-submit"><?php echo e(__('admin.submit')); ?></button>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.column-selector {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.column-selector .dropdown-menu {
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
max-height: 500px;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.column-selector .dropdown-menu ul {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.column-selector .dropdown-menu ul li {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.column-selector .dropdown-menu label {
|
||||
width: 100%;
|
||||
padding: 3px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
$('.column-select-submit').on('click', function () {
|
||||
|
||||
var defaults = <?php echo json_encode($defaults, 15, 512) ?>;
|
||||
var selected = [];
|
||||
|
||||
$('.column-select-item:checked').each(function () {
|
||||
selected.push($(this).val());
|
||||
});
|
||||
|
||||
if (selected.length == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
var url = new URL(location);
|
||||
|
||||
if (selected.sort().toString() == defaults.sort().toString()) {
|
||||
url.searchParams.delete('_columns_');
|
||||
} else {
|
||||
url.searchParams.set('_columns_', selected.join());
|
||||
}
|
||||
|
||||
$.pjax({container:'#pjax-container', url: url.toString()});
|
||||
});
|
||||
|
||||
$('.column-select-all').on('click', function () {
|
||||
$('.column-select-item').iCheck('check');
|
||||
return false;
|
||||
});
|
||||
|
||||
$('.column-select-item').iCheck({
|
||||
checkboxClass:'icheckbox_minimal-blue'
|
||||
});
|
||||
</script>
|
|
@ -1,35 +0,0 @@
|
|||
<?php if(Admin::user()->visible(\Illuminate\Support\Arr::get($item, 'roles', [])) && Admin::user()->can(\Illuminate\Support\Arr::get($item, 'permission'))): ?>
|
||||
<?php if(!isset($item['children'])): ?>
|
||||
<li>
|
||||
<?php if(url()->isValidUrl($item['uri'])): ?>
|
||||
<a href="<?php echo e($item['uri']); ?>" target="_blank">
|
||||
<?php else: ?>
|
||||
<a href="<?php echo e(admin_url($item['uri'])); ?>">
|
||||
<?php endif; ?>
|
||||
<i class="fa <?php echo e($item['icon']); ?>"></i>
|
||||
<?php if(Lang::has($titleTranslation = 'admin.menu_titles.' . trim(str_replace(' ', '_', strtolower($item['title']))))): ?>
|
||||
<span><?php echo e(__($titleTranslation)); ?></span>
|
||||
<?php else: ?>
|
||||
<span><?php echo e(admin_trans($item['title'])); ?></span>
|
||||
<?php endif; ?>
|
||||
</a>
|
||||
</li>
|
||||
<?php else: ?>
|
||||
<li class="treeview">
|
||||
<a href="#">
|
||||
<i class="fa <?php echo e($item['icon']); ?>"></i>
|
||||
<?php if(Lang::has($titleTranslation = 'admin.menu_titles.' . trim(str_replace(' ', '_', strtolower($item['title']))))): ?>
|
||||
<span><?php echo e(__($titleTranslation)); ?></span>
|
||||
<?php else: ?>
|
||||
<span><?php echo e(admin_trans($item['title'])); ?></span>
|
||||
<?php endif; ?>
|
||||
<i class="fa fa-angle-left pull-right"></i>
|
||||
</a>
|
||||
<ul class="treeview-menu">
|
||||
<?php $__currentLoopData = $item['children']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<?php echo $__env->make('admin::partials.menu', $item, array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</ul>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
|
@ -1,6 +0,0 @@
|
|||
<select class="form-control <?php echo e($class); ?>" name="<?php echo e($name); ?>[]" multiple style="width: 100%;">
|
||||
<option></option>
|
||||
<?php $__currentLoopData = $options; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $select => $option): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||
<option value="<?php echo e($select); ?>" <?php echo e(in_array((string)$select, (array)$value) ?'selected':''); ?>><?php echo e($option); ?></option>
|
||||
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||||
</select>
|
|
@ -184,3 +184,38 @@
|
|||
#55 /var/www/coinwind/public/index.php(55): Illuminate\\Foundation\\Http\\Kernel->handle()
|
||||
#56 {main}
|
||||
"}
|
||||
[2022-04-29 02:44:42] local.ERROR: There are no commands defined in the "generate" namespace. {"exception":"[object] (Symfony\\Component\\Console\\Exception\\CommandNotFoundException(code: 0): There are no commands defined in the \"generate\" namespace. at /var/www/coinwind/vendor/symfony/console/Application.php:579)
|
||||
[stacktrace]
|
||||
#0 /var/www/coinwind/vendor/symfony/console/Application.php(632): Symfony\\Component\\Console\\Application->findNamespace()
|
||||
#1 /var/www/coinwind/vendor/symfony/console/Application.php(236): Symfony\\Component\\Console\\Application->find()
|
||||
#2 /var/www/coinwind/vendor/symfony/console/Application.php(148): Symfony\\Component\\Console\\Application->doRun()
|
||||
#3 /var/www/coinwind/vendor/laravel/framework/src/Illuminate/Console/Application.php(88): Symfony\\Component\\Console\\Application->run()
|
||||
#4 /var/www/coinwind/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(121): Illuminate\\Console\\Application->run()
|
||||
#5 /var/www/coinwind/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle()
|
||||
#6 {main}
|
||||
"}
|
||||
[2022-04-29 02:47:21] local.ERROR: Command "session:clear" is not defined.
|
||||
|
||||
Did you mean one of these?
|
||||
auth:clear-resets
|
||||
cache:clear
|
||||
config:clear
|
||||
route:clear
|
||||
session:table
|
||||
view:clear {"exception":"[object] (Symfony\\Component\\Console\\Exception\\CommandNotFoundException(code: 0): Command \"session:clear\" is not defined.
|
||||
|
||||
Did you mean one of these?
|
||||
auth:clear-resets
|
||||
cache:clear
|
||||
config:clear
|
||||
route:clear
|
||||
session:table
|
||||
view:clear at /var/www/coinwind/vendor/symfony/console/Application.php:651)
|
||||
[stacktrace]
|
||||
#0 /var/www/coinwind/vendor/symfony/console/Application.php(236): Symfony\\Component\\Console\\Application->find()
|
||||
#1 /var/www/coinwind/vendor/symfony/console/Application.php(148): Symfony\\Component\\Console\\Application->doRun()
|
||||
#2 /var/www/coinwind/vendor/laravel/framework/src/Illuminate/Console/Application.php(88): Symfony\\Component\\Console\\Application->run()
|
||||
#3 /var/www/coinwind/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(121): Illuminate\\Console\\Application->run()
|
||||
#4 /var/www/coinwind/artisan(37): Illuminate\\Foundation\\Console\\Kernel->handle()
|
||||
#5 {main}
|
||||
"}
|
||||
|
|
Loading…
Reference in New Issue