@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.dashboard') }} @parent @stop {{-- Page content --}} @section('content') @if ($snipeSettings->dashboard_message!='')
{!! Parsedown::instance()->text(e($snipeSettings->dashboard_message)) !!}
@endif

{{ number_format($counts['asset']) }}

{{ trans('general.total_assets') }}

@can('index', \App\Models\Asset::class) {{ trans('general.moreinfo') }} @endcan

{{ number_format($counts['license']) }}

{{ trans('general.total_licenses') }}

@can('view', \App\Models\License::class) {{ trans('general.moreinfo') }} @endcan

{{ number_format($counts['accessory']) }}

{{ trans('general.total_accessories') }}

@can('index', \App\Models\Accessory::class) {{ trans('general.moreinfo') }} @endcan

{{ number_format($counts['consumable']) }}

{{ trans('general.total_consumables') }}

@can('index', \App\Models\Consumable::class) {{ trans('general.moreinfo') }} @endcan
@if ($counts['grand_total'] == 0)

This is your dashboard. There are many like it, but this one is yours.

60% Complete (warning)

It looks like you haven't added anything yet, so we don't have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!

@can('create', \App\Models\Asset::class) New Asset @endcan
@can('create', \App\Models\License::class) New License @endcan
@can('create', \App\Models\Accessory::class) New Accessory @endcan
@can('create', \App\Models\Consumable::class) New Consumable @endcan
@else

{{ trans('general.recent_activity') }}

{{ trans('general.date') }} {{ trans('general.admin') }} {{ trans('general.action') }} {{ trans('general.item') }} {{ trans('general.target') }}

{{ trans('general.assets') }} by Status

Asset {{ trans('general.categories') }}

{{ trans('general.name') }} {{ trans('general.type') }} Asset Count Accessories Count Consumables Count Components Count Licenses Count
@endif @stop @section('moar_scripts') @include ('partials.bootstrap-table', ['simple_view' => true, 'nopages' => true]) @if ($snipeSettings->load_remote=='1') @else @endif @stop