@if (Session::has('message'))
{{ Session::get('message') }}
@endif
@foreach($rThreads as $rThread)
Статус: {!! config('parser.rthreads_statuses')[$rThread->status] !!}
@if(in_array($rThread->status, ['waiting', 'processing', 'finished', 'error', 'stopping']))
Страна: {!! $rThread->country->flag . ' ' . $rThread->country->name_ru !!}
Тип визы: {!! $rThread->visa_type->short_name !!}
Резидент: {!! $rThread->is_resident == 1 ? 'Да' : 'Нет' !!}
Размер группы: {!! $rThread->group_size !!}
Зарегистрировано: {!!$rThread->quantity_done !!}
Всего: {!! $rThread->quantity !!}
@endif
{!! $rThread->log !!}
@if(in_array($rThread->status, ['processing']))
@endif
@if(in_array($rThread->status, ['waiting', 'processing', 'finished', 'error', 'stopping']))
@endif
@endforeach