snipe-it/resources/views/dashboard.blade.php

241 lines
9.7 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ trans('general.dashboard') }}
@parent
@stop
{{-- Page content --}}
@section('content')
<link rel="stylesheet" type="text/css" href="{{ asset('assets/css/morris.css') }}">
<div class="row">
<!-- panel -->
<div class="col-lg-3 col-xs-6">
<!-- small box -->
<div class="small-box bg-teal">
<div class="inner">
<h3>{{ number_format(\App\Models\Asset::assetcount()) }}</h3>
<p>{{ trans('general.total_assets') }}</p>
</div>
<div class="icon">
<i class="fa fa-barcode"></i>
</div>
<a href="{{ route('hardware') }}" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
</div>
</div><!-- ./col -->
<div class="col-lg-3 col-xs-6">
<!-- small box -->
<div class="small-box bg-maroon">
<div class="inner">
<h3>{{ number_format(\App\Models\License::assetcount()) }}</h3>
<p>{{ trans('general.total_licenses') }}</p>
</div>
<div class="icon">
<i class="fa fa-floppy-o"></i>
2016-03-25 01:18:05 -07:00
</div>
<a href="{{ route('licenses') }}" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
</div>
</div><!-- ./col -->
<div class="col-lg-3 col-xs-6">
<!-- small box -->
<div class="small-box bg-orange">
<div class="inner">
<h3> {{ number_format(\App\Models\Accessory::count()) }}</h3>
<p>total accessories</p>
</div>
<div class="icon">
<i class="fa fa-keyboard-o"></i>
</div>
<a href="{{ route('accessories') }}" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
</div>
</div><!-- ./col -->
<div class="col-lg-3 col-xs-6">
<!-- small box -->
<div class="small-box bg-purple">
<div class="inner">
<h3> {{ number_format(\App\Models\Consumable::count()) }}</h3>
<p>total consumables</p>
</div>
<div class="icon">
<i class="fa fa-tint"></i>
</div>
<a href="{{ route('consumables') }}" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
</div>
</div><!-- ./col -->
</div>
2016-05-24 16:10:04 -07:00
<!-- recent activity -->
2016-03-25 01:18:05 -07:00
<div class="row">
2016-05-24 16:10:04 -07:00
<div class="col-md-9">
2016-03-25 01:18:05 -07:00
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ trans('general.recent_activity') }}</h3>
<div class="box-tools pull-right">
<button class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>
</div>
</div><!-- /.box-header -->
<div class="box-body">
<div class="row">
<div class="col-md-12">
2016-05-24 19:04:56 -07:00
<div class="table-responsive">
2016-03-25 01:18:05 -07:00
<table class="table table-hover table-fixed break-word">
<thead>
<tr>
2016-05-20 01:17:00 -07:00
<th></th>
2016-05-18 19:16:43 -07:00
<th class="col-md-2"><span class="line"></span>{{ trans('general.date') }}</th>
2016-03-25 01:18:05 -07:00
<th class="col-md-2"><span class="line"></span>{{ trans('general.admin') }}</th>
<th class="col-md-2"><span class="line"></span>{{ trans('table.actions') }}</th>
2016-05-18 19:48:19 -07:00
<th class="col-md-3"><span class="line"></span>{{ trans('table.item') }}</th>
<th class="col-md-3"><span class="line"></span>To</th>
2016-03-25 01:18:05 -07:00
</tr>
</thead>
<tbody>
@if (count($recent_activity) > 0)
@foreach ($recent_activity as $activity)
<tr>
2016-05-20 01:17:00 -07:00
<td>
@if ($activity->asset_type=="hardware")
<i class="fa fa-barcode"></i>
@elseif ($activity->asset_type=="accessory")
<i class="fa fa-keyboard-o"></i>
@elseif ($activity->asset_type=="consumable")
<i class="fa fa-tint"></i>
@elseif ($activity->asset_type=="license")
<i class="fa fa-floppy-o"></i>
@elseif ($activity->asset_type=="component")
<i class="fa fa-hdd-o"></i>
@else
<i class="fa fa-paperclip"></i>
@endif
</td>
2016-07-07 02:07:31 -07:00
<td>{{ date("M d, Y g:iA", strtotime($activity->created_at)) }}</td>
2016-03-25 01:18:05 -07:00
<td>
@if ($activity->action_type!='requested')
2016-08-01 10:17:46 -07:00
@if ($activity->adminlog)
<a href="{{ route('view/user', $activity->user_id) }}">{{ $activity->adminlog->fullName() }}</a>
@else
Deleted Admin
@endif
2016-03-25 01:18:05 -07:00
@endif
</td>
2016-05-18 19:48:19 -07:00
<td>
{{ strtolower(trans('general.'.str_replace(' ','_',$activity->action_type))) }}
</td>
2016-03-25 01:18:05 -07:00
<td>
@if (($activity->assetlog) && ($activity->asset_type=="hardware"))
<a href="{{ route('view/hardware', $activity->asset_id) }}">{{ $activity->assetlog->showAssetName() }}</a>
@elseif (($activity->licenselog) && ($activity->asset_type=="software"))
<a href="{{ route('view/license', $activity->asset_id) }}">{{ $activity->licenselog->name }}</a>
@elseif (($activity->consumablelog) && ($activity->asset_type=="consumable"))
<a href="{{ route('view/consumable', $activity->consumable_id) }}">{{ $activity->consumablelog->name }}</a>
@elseif (($activity->accessorylog) && ($activity->asset_type=="accessory"))
<a href="{{ route('view/accessory', $activity->accessory_id) }}">{{ $activity->accessorylog->name }}</a>
2016-05-18 19:16:43 -07:00
@elseif (($activity->componentlog) && ($activity->asset_type=="component"))
<a href="{{ route('view/component', $activity->component_id) }}">{{ $activity->componentlog->name }}</a>
2016-05-18 19:48:19 -07:00
@elseif (($activity->assetlog) && ($activity->action_type=="uploaded"))
<a href="{{ route('view/hardware', $activity->asset_id) }}">{{ $activity->assetlog->showAssetName() }}</a>
2016-05-18 19:16:43 -07:00
@else
{{ trans('general.bad_data') }}
2016-03-25 01:18:05 -07:00
@endif
</td>
2016-05-18 19:48:19 -07:00
2016-03-25 01:18:05 -07:00
<td>
2016-05-18 19:48:19 -07:00
@if (($activity->componentlog) && ($activity->asset_type=="component"))
<a href="{{ route('view/hardware', $activity->asset_id) }}">{{ $activity->assetlog->showAssetName() }}</a>
@elseif($activity->action_type=='requested')
2016-07-07 02:07:31 -07:00
@if ($activity->adminlog)
<a href="{{ route('view/user', $activity->user_id) }}">{{ $activity->adminlog->fullName() }}</a>
@endif
2016-03-25 01:18:05 -07:00
@elseif ($activity->userlog)
<a href="{{ route('view/user', $activity->checkedout_to) }}">{{ $activity->userlog->fullName() }}</a>
2016-05-18 19:48:19 -07:00
2016-03-25 01:18:05 -07:00
@endif
</td>
</tr>
@endforeach
@endif
</tbody>
</table>
2016-05-24 19:04:56 -07:00
</div><!-- /.responsive -->
2016-03-25 01:18:05 -07:00
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- ./box-body -->
</div><!-- /.box -->
</div>
2016-05-24 16:10:04 -07:00
<div class="col-md-3">
<div class="box box-default">
<div class="box-header with-border">
<h3 class="box-title">{{ trans('general.status') }}</h3>
<div class="box-tools pull-right">
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
</button>
</div>
</div>
<!-- /.box-header -->
<div class="box-body">
<div class="row">
<div class="col-md-12">
<div class="chart-responsive">
<canvas id="statusPieChart" height="150"></canvas>
</div>
<!-- ./chart-responsive -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
</div>
<!-- /.box -->
</div>
2016-03-25 01:18:05 -07:00
</div>
2016-05-24 16:10:04 -07:00
@section('moar_scripts')
<script src="{{ asset('assets/js/plugins/chartjs/Chart.min.js') }}"></script>
<script>
2016-03-25 01:18:05 -07:00
2016-05-24 16:10:04 -07:00
var pieChartCanvas = $("#statusPieChart").get(0).getContext("2d");
var pieChart = new Chart(pieChartCanvas);
var ctx = document.getElementById("statusPieChart");
$.get('{{ route('api.statuslabels.assets') }}', function (data) {
var myPieChart = new Chart(ctx,{
type: 'doughnut',
data: data,
options: pieOptions
});
// document.getElementById('my-doughnut-legend').innerHTML = myPieChart.generateLegend();
});
2016-03-25 01:18:05 -07:00
2016-05-24 16:10:04 -07:00
</script>
2016-03-25 01:18:05 -07:00
@stop
2016-05-24 16:10:04 -07:00
2016-03-25 01:18:05 -07:00
@stop