@extends('layouts/default') {{-- Page title --}} @section('title') {{ $statuslabel->name }} Assets ({{ $statuslabel->getStatuslabelType() }}) @parent @stop @section('header_right') {{ trans('general.create') }} @stop {{-- Page content --}} @section('content')
{{ Form::open([ 'method' => 'POST', 'route' => ['hardware/bulkedit'], 'class' => 'form-inline', 'id' => 'bulkForm']) }}
@if (Input::get('status')!='Deleted')
@endif @if (Input::get('status')!='Deleted') @endif @foreach(\App\Models\CustomField::all() AS $field) @endforeach
{{ trans('general.id') }} {{ trans('general.company') }} {{ trans('admin/hardware/table.image') }} {{ trans('admin/hardware/form.name') }} {{ trans('admin/hardware/table.asset_tag') }} {{ trans('admin/hardware/table.serial') }} {{ trans('admin/hardware/form.model') }} {{ trans('admin/models/table.modelnumber') }} {{ trans('admin/hardware/form.checkedout_to') }} {{ trans('admin/hardware/table.location') }} {{ trans('general.category') }} {{ trans('general.manufacturer') }} {{ trans('admin/hardware/form.cost') }} {{ trans('admin/hardware/form.date') }} {{ trans('general.eol') }} {{ trans('general.notes') }} {{ trans('admin/hardware/form.order') }} {{ trans('admin/hardware/table.checkout_date') }} {{ trans('admin/hardware/form.expected_checkin') }} @if ($field->field_encrypted=='1') @endif {{$field->name}} {{ trans('general.created_at') }} {{ trans('admin/hardware/table.change') }} {{ trans('table.actions') }}
{{ Form::close() }}
@stop @section('moar_scripts') @include ('partials.bootstrap-table', ['exportFile' => 'statuslabels-export', 'search' => true]) @stop