@extends('users.home.index') @section('content')
@if(!$isParticipating)
Your Papers on {{ $conf->name }} @if(!$conf->isCanUpload()) Uploading new paper disabled. Deadline passed. @endif
@forelse($submissions as $subs) @empty @endforelse
# Title Author Status Action
{{ $count++ }} {{ str_limit($subs->title, 70) }} @foreach ($subs->authors as $author) {{ $author->name }} , @endforeach {{ $subs->getStatusFromAuthor() }}
@endif @if(!$isRegisteredAuthor && !$isParticipating)
Participant Section

Please note. By registering as participant, you cannot upload papers as authors.

To Register, you just need to send the payment proof of participant registration below.

@if($appl != NULL && $appl->payment_notes != '')

Notes From Organizer
{{ $appl->payment_notes }}

@endif @if($appl === NULL || $appl->payment_proof === '')
Please upload file with .jpg/ .jpeg / .png / .bmp extension only.
@else
Participant Payment Proof Uploaded. Waiting Validation
@endif
@endif @if($isParticipating)

You are a registered participants of this conference

@endif
@endsection @section('scripts.footer') @endsection