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

238 lines
9.2 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>
2016-08-02 00:54:38 -07:00
@can('assets.view')
<a href="{{ route('hardware') }}" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
@endcan
2016-03-25 01:18:05 -07:00
</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>
2016-08-02 00:54:38 -07:00
@can('licenses.view')
<a href="{{ route('licenses') }}" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
@endcan
2016-03-25 01:18:05 -07:00
</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>
2016-08-02 00:54:38 -07:00
@can('accessories.view')
<a href="{{ route('accessories') }}" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
@endcan
2016-03-25 01:18:05 -07:00
</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>
2016-08-02 00:54:38 -07:00
@can('consumables.view')
<a href="{{ route('consumables') }}" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
@endcan
2016-03-25 01:18:05 -07:00
</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->itemType()=="asset")
2016-05-20 01:17:00 -07:00
<i class="fa fa-barcode"></i>
@elseif ($activity->itemType()=="accessory")
2016-05-20 01:17:00 -07:00
<i class="fa fa-keyboard-o"></i>
@elseif ($activity->itemType()=="consumable")
2016-05-20 01:17:00 -07:00
<i class="fa fa-tint"></i>
@elseif ($activity->itemType()=="license")
2016-05-20 01:17:00 -07:00
<i class="fa fa-floppy-o"></i>
@elseif ($activity->itemType()=="component")
2016-05-20 01:17:00 -07:00
<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') && ($activity->action_type!="request_canceled"))
@if ($activity->user)
<a href="{{ route('view/user', $activity->user_id) }}">{{ $activity->user->fullName() }}</a>
2016-08-01 10:17:46 -07:00
@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->item) && ($activity->itemType()=="asset"))
<a href="{{ route('view/hardware', $activity->item_id) }}">{{ $activity->item->asset_tag }} - {{ $activity->item->showAssetName() }}</a>
@elseif ($activity->item)
<a href="{{ route('view/'. $activity->itemType(), $activity->item_id) }}">{{ $activity->item->name }}</a>
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>
@if (($activity->userasassetlog) && ($activity->action_type=="uploaded") && ($activity->itemType()=="user"))
<a href="{{ route('view/user', $activity->target_id) }}">{{ $activity->userasassetlog->fullName() }}</a>
@elseif (($activity->item) && ($activity->target instanceof \App\Models\Asset))
<a href="{{ route('view/hardware', $activity->target_id) }}">{{ $activity->target->showAssetName() }}</a>
@elseif (($activity->item) && ($activity->target instanceof \App\Models\User))
<a href="{{route('view/user', $activity->target_id) }}"> {{ $activity->target->fullName() }}</a>
@elseif ($activity->action_type=='requested') <!--The user is who requested the item, not the target-->
<a href="{{ route('view/user', $activity->user_id) }}">{{ $activity->user->fullName() }}</a>
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.assets') }}</h3>
2016-05-24 16:10:04 -07:00
<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