@extends('layouts/default') @section('title0') @if ((Input::get('company_id')) && ($company)) {{ $company->name }} @endif @if (Input::get('status')) @if (Input::get('status')=='Pending') {{ trans('general.pending') }} @elseif (Input::get('status')=='RTD') {{ trans('general.ready_to_deploy') }} @elseif (Input::get('status')=='Deployed') {{ trans('general.deployed') }} @elseif (Input::get('status')=='Undeployable') {{ trans('general.undeployable') }} @elseif (Input::get('status')=='Deployable') {{ trans('general.deployed') }} @elseif (Input::get('status')=='Requestable') {{ trans('admin/hardware/general.requestable') }} @elseif (Input::get('status')=='Archived') {{ trans('general.archived') }} @elseif (Input::get('status')=='Deleted') {{ trans('general.deleted') }} @endif @else {{ trans('general.all') }} @endif {{ trans('general.assets') }} @if (Input::has('order_number')) : Order #{{ Input::get('order_number') }} @endif @stop {{-- Page title --}} @section('title') @yield('title0') @parent @stop @section('header_right') Custom Export {{ 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
{{ Form::close() }}
@stop @section('moar_scripts') @include('partials.bootstrap-table') @stop