mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
Conflicts: .gitignore app/Http/Controllers/AdminController.php app/Providers/AppServiceProvider.php app/User.php artisan bootstrap/cache/.gitignore composer.lock config/app.php database/migrations/2014_10_12_000000_create_users_table.php readme.md resources/views/admin/dashboard.blade.php resources/views/auth/login.blade.php resources/views/layouts/admin/header.blade.php routes/web.php storage/app/.gitignore storage/app/public/.gitignore storage/framework/.gitignore storage/framework/cache/.gitignore storage/framework/sessions/.gitignore storage/framework/testing/.gitignore storage/framework/views/.gitignore storage/logs/.gitignore
74 lines
2.5 KiB
PHP
74 lines
2.5 KiB
PHP
@extends('layouts.admin.main')
|
|
|
|
@section('content')
|
|
<!--<div class="col-sm-6 col-lg-6">
|
|
<div class="card text-white bg-flat-color-3">
|
|
<div class="card-body pb-0">
|
|
<div class="dropdown float-right">
|
|
<button class="btn bg-transparent dropdown-toggle theme-toggle text-light" type="button" id="dropdownMenuButton" data-toggle="dropdown">
|
|
<i class="fa fa-cog"></i>
|
|
</button>
|
|
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
|
<div class="dropdown-menu-content">
|
|
<a class="dropdown-item" href="#">Action</a>
|
|
<a class="dropdown-item" href="#">Another action</a>
|
|
<a class="dropdown-item" href="#">Something else here</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<h4 class="mb-0">
|
|
<span class="count">10468</span>
|
|
</h4>
|
|
<p class="text-light">Members online</p>
|
|
|
|
</div>
|
|
|
|
<div class="chart-wrapper px-0" style="height:70px;" height="70">
|
|
<canvas id="widgetChart3"></canvas>
|
|
</div>
|
|
</div>
|
|
</div>-->
|
|
@endsection
|
|
|
|
@section('breadcrumb')
|
|
<div class="breadcrumbs">
|
|
<div class="col-sm-4">
|
|
<div class="page-header float-left">
|
|
<div class="page-title">
|
|
<h1>{{ trans('admin/dashboard.page_title')}}</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<div class="page-header float-right">
|
|
<div class="page-title">
|
|
<ol class="breadcrumb text-right">
|
|
<li class="active">{{ trans('admin/dashboard.breadcrumb')}}</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('scripts')
|
|
<script>
|
|
( function ( $ ) {
|
|
"use strict";
|
|
|
|
jQuery( '#vmap' ).vectorMap( {
|
|
map: 'world_en',
|
|
backgroundColor: null,
|
|
color: '#ffffff',
|
|
hoverOpacity: 0.7,
|
|
selectedColor: '#1de9b6',
|
|
enableZoom: true,
|
|
showTooltip: true,
|
|
values: sample_data,
|
|
scaleColors: [ '#1de9b6', '#03a9f5' ],
|
|
normalizeFunction: 'polynomial'
|
|
} );
|
|
} )( jQuery );
|
|
</script>
|
|
@endsection
|