@extends('layouts/default') {{-- Page title --}} @section('title') {{ $manufacturer->name }} {{ trans('general.manufacturer') }} @parent @stop @section('header_right')
{{ trans('general.back') }}
{{ trans('button.actions') }}
{{ trans('admin/manufacturers/table.update') }}
{{ trans('admin/manufacturers/table.create') }}
@stop {{-- Page content --}} @section('content')
{{ trans('general.assets') }} {!! (($manufacturer->assets) && ($manufacturer->assets()->AssetsForShow()->count() > 0 )) ? '
'.number_format($manufacturer->assets()->AssetsForShow()->count()).'
' : '' !!}
{{ trans('general.licenses') }} {!! (($manufacturer->licenses) && ($manufacturer->licenses->count() > 0 )) ? '
'.number_format($manufacturer->licenses->count()).'
' : '' !!}
{{ trans('general.accessories') }} {!! (($manufacturer->accessories) && ($manufacturer->accessories->count() > 0 )) ? '
'.number_format($manufacturer->accessories->count()).'
' : '' !!}
{{ trans('general.consumables') }} {!! (($manufacturer->consumables) && ($manufacturer->consumables->count() > 0 )) ? '
'.number_format($manufacturer->consumables->count()).'
' : '' !!}
@include('partials.asset-bulk-actions')
@stop @section('moar_scripts') @include ('partials.bootstrap-table', ['exportFile' => 'manufacturer' . $manufacturer->name . '-export', 'search' => false]) @stop