@extends('Layouts/dashboard') @section('submenu') @include( 'Plugins/Payment/Views/Elements/Line/submenu' ) @endsection @section('content')

@t('TouchDesk Items matching')

@foreach ($items as $row) {!! Form::open() !!} {!! Form::close() !!} @endforeach
@t('Product') @t('TouchDesk Product Name') @t('TouchDesk ID') @t('Type') @t('Type ID') @t('Modified')
{!! Form::hidden('data[id]', $row->id) !!} {!! Form::select( 'data[product_id]', $products, $row->product_id, [ 'empty' => true ] ) !!} {{ (isset($row->extra->name) ? $row->extra->name : null) }} {{ $row->touchdesk_id }} {!! Form::select( 'data[type]', $types, $row->type, [ 'empty' => true ] ) !!} {!! Form::text( 'data[type_id]', $row->type_id ) !!} {{ $row->modified }} @if (isset($row->extra) && $row->extra) @else @endif
@endsection