@extends('layouts/default') {{-- Page Title --}} @section('title') @if (request()->routeIs('report-templates.edit')) {{ trans('general.update') }} {{ $template->name }} @elseif(request()->routeIs('report-templates.show')) {{ trans('general.custom_report') }}: {{ $template->name }} @else {{ trans('general.custom_report') }} @endif @parent @stop @section('header_right') @if (request()->routeIs('report-templates.edit')) {{ trans('general.back') }} @elseif (request()->routeIs('report-templates.show')) {{ trans('general.back') }} @else {{ trans('general.back') }} @endif @stop {{-- Page content --}} @section('content')
{{ Form::open([ 'method' => 'post', 'class' => 'form-horizontal', 'id' => 'custom-report-form', 'url' => request()->routeIs('report-templates.edit') ? route('report-templates.update', $template) : '/reports/custom', ]) }} {{csrf_field()}}
@if (request()->routeIs('reports/custom') || request()->routeIs('report-templates.show'))

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

@endif @if (request()->routeIs('report-templates.edit'))
{!! $errors->first('name', '') !!}
@endif @if (request()->routeIs('report-templates.show'))
{{ trans('general.update') }}
@endif

{{ trans('general.checked_out_to_fields') }}:

@if ($customfields->count() > 0)

{{ trans('admin/custom_fields/general.custom_fields') }}

@foreach ($customfields as $customfield) @endforeach @endif

{!! trans('general.report_fields_info') !!}


@include ('partials.forms.edit.company-select', [ 'translated_name' => trans('general.company'), 'fieldname' => 'by_company_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'selected' => $template->selectValues('by_company_id', \App\Models\Company::class), ]) @include ('partials.forms.edit.location-select', [ 'translated_name' => trans('general.location'), 'fieldname' => 'by_location_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'selected' => $template->selectValues('by_location_id', \App\Models\Location::class), ]) @include ('partials.forms.edit.location-select', [ 'translated_name' => trans('admin/hardware/form.default_location'), 'fieldname' => 'by_rtd_location_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'selected' => $template->selectValues('by_rtd_location_id', \App\Models\Location::class), ]) @include ('partials.forms.edit.department-select',[ 'translated_name' => trans('general.department'), 'fieldname' => 'by_dept_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'selected' => $template->selectValues('by_dept_id', \App\Models\Department::class), ]) @include ('partials.forms.edit.supplier-select', [ 'translated_name' => trans('general.supplier'), 'fieldname' => 'by_supplier_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'selected' => $template->selectValues('by_supplier_id', \App\Models\Supplier::class), ]) @include ('partials.forms.edit.model-select', [ 'translated_name' => trans('general.asset_model'), 'fieldname' => 'by_model_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'selected' => $template->selectValues('by_model_id', \App\Models\AssetModel::class), ]) @include ('partials.forms.edit.manufacturer-select', [ 'translated_name' => trans('general.manufacturer'), 'fieldname' => 'by_manufacturer_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'selected' => $template->selectValues('by_manufacturer_id', \App\Models\Manufacturer::class), ]) @include ('partials.forms.edit.category-select', [ 'translated_name' => trans('general.category'), 'fieldname' => 'by_category_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'category_type' => 'asset', 'selected' => $template->selectValues('by_category_id', \App\Models\Category::class), ]) @include ('partials.forms.edit.status-select', [ 'translated_name' => trans('admin/hardware/form.status'), 'fieldname' => 'by_status_id[]', 'multiple' => 'true', 'hide_new' => 'true', 'selected' => $template->selectValues('by_status_id', \App\Models\Statuslabel::class), ])
{{ strtolower(trans('general.to')) }}
@if ($errors->has('purchase_start') || $errors->has('purchase_end'))
{!! $errors->first('purchase_start', '') !!} {!! $errors->first('purchase_end', '') !!}
@endif
{{ strtolower(trans('general.to')) }}
@if ($errors->has('created_start') || $errors->has('created_end'))
{!! $errors->first('created_start', '') !!} {!! $errors->first('created_end', '') !!}
@endif
{{ strtolower(trans('general.to')) }}
@if ($errors->has('checkout_date_start') || $errors->has('checkout_date_end'))
{!! $errors->first('checkout_date_start', '') !!} {!! $errors->first('checkout_date_end', '') !!}
@endif
{{ strtolower(trans('general.to')) }}
@if ($errors->has('checkin_date_start') || $errors->has('checkin_date_end'))
{!! $errors->first('checkin_date_start', '') !!} {!! $errors->first('checkin_date_end', '') !!}
@endif
{{ strtolower(trans('general.to')) }}
@if ($errors->has('expected_checkin_start') || $errors->has('expected_checkin_end'))
{!! $errors->first('expected_checkin_start', '') !!} {!! $errors->first('expected_checkin_end', '') !!}
@endif
to
@if ($errors->has('asset_eol_date_start') || $errors->has('asset_eol_date_end'))
{!! $errors->first('asset_eol_date_start', '') !!} {!! $errors->first('asset_eol_date_end', '') !!}
@endif
{{ strtolower(trans('general.to')) }}
@if ($errors->has('last_audit_start') || $errors->has('last_audit_end'))
{!! $errors->first('last_audit_start', '') !!} {!! $errors->first('last_audit_end', '') !!}
@endif
{{ strtolower(trans('general.to')) }}
@if ($errors->has('next_audit_start') || $errors->has('next_audit_end'))
{!! $errors->first('next_audit_start', '') !!} {!! $errors->first('next_audit_end', '') !!}
@endif
{{ Form::close() }}
@if (! request()->routeIs('report-templates.edit'))
@endif @if (request()->routeIs('reports/custom'))
@csrf
{!! $errors->first('name', '') !!}

{{ trans('admin/reports/message.about_templates') }}

{!! trans('admin/reports/message.saving_templates_description') !!}

@endif
@stop @section('moar_scripts') @stop