@extends('master') @section('content')
Möten du är administratör för
@if(!$schedules->isEmpty()) @foreach($schedules as $schedule) @php $schedule_dates=$schedule->getscheduledate(); @endphp @endforeach
Titel Antal svar Status Tidsfrist Deltagare Inställningar
{{$schedule->title}} {{$schedule->getParticipantCountAttribute()}} öppen stängd @if($schedule->reply_deadline_date != "") {{$schedule->reply_deadline_date}} @else Ingen tidsfrist @endif Titel / beskrivning   Datum / alternativ   Kopiera schema
@else
Har inte skapat något möte än
@endif
{!! $schedules->links() !!}
Möten där du svarat
@if(!$participants->isEmpty()) @foreach($participants as $participant) @endforeach
Titel Status Tidsfrist
{{$participant->title}} @if($participant->status == 'yes') öppen @else stängd @endif @if($participant->reply_deadline_date != "") {{$participant->reply_deadline_date}} @else Ingen tidsfrist @endif
@else
Du har inte deltagit i något schema
@endif
{!! $participants->links() !!}
@endsection