@extends('layouts.main') @section('title', 'Simulator') @section('headline', 'Simulator') @section('content')
{!! Form::open(['action' => 'Simulator\ArtistSimulatorOverviewController@simulate', 'class' => 'form-horizontal', 'id' => 'artistSimulatorForm', 'method' => 'post', 'role' => 'form', 'files' => true]) !!}
{!! Form::close() !!}

Künstler Matching

Status Nachricht: @if($statusMessage){{$statusMessage}}@else - @endif
Status Nachricht Künstler: @if($statusMessageArtist){{$statusMessageArtist}}@else - @endif

{{-- {!! Form::open(['action' => 'Ajax\AuctionObjectsStageOverviewController@bulkEditStatus', 'class' => 'form-horizontal', 'id' => 'frm-bulk-edit', 'method' => 'post', 'role' => 'form', 'files' => true]) !!} --}} @forelse($testDataArtists as $testDataArtist) @empty @endforelse
ID Geb.Datum Gest.Datum Vorname EN Nachname EN Vorname DE Nachname DE Vorname FR Nachname FR Geb.Ort EN Gest.Ort EN Geb.Ort DE Gest.Ort DE Geb.Ort FR Gest.Ort FR
{{ $testDataArtist->id }} {{ $testDataArtist->born_date }} {{ $testDataArtist->died_date }} {{ $testDataArtist->firstname_en }} {{ $testDataArtist->lastname_en }} {{ $testDataArtist->firstname_de }} {{ $testDataArtist->lastname_de }} {{ $testDataArtist->firstname_fr }} {{ $testDataArtist->lastname_fr }} {{ $testDataArtist->born_location_en }} {{ $testDataArtist->died_location_en }} {{ $testDataArtist->born_location_de }} {{ $testDataArtist->died_location_de }} {{ $testDataArtist->born_location_fr }} {{ $testDataArtist->died_location_fr }}
- - - - - - - - - - - - - - -

Medium Matching

Status Nachricht Medium: @if($statusMessageMedium){{$statusMessageMedium}}@else - @endif

@forelse($testDataMediums as $testDataMedium) @empty @endforelse
ID Suchwort DE Suchwort EN Suchwort FR Grobtechnik
{{ $testDataMedium->id }} {{ $testDataMedium->searchword_de }} {{ $testDataMedium->searchword_en }} {{ $testDataMedium->searchword_fr }} {{ $testDataMedium->name }}
- - - - -
{{-- {!! Form::close() !!} --}}
@stop