@extends('admins.dashboard') @section('content')
| Id | Conference Name | Enrolls |
|---|---|---|
| {{ $conf->id }} | {{ $conf->name }} @if (!$showUser->isAdmin()) @if ($showUser->isAuthoring($conf)) author @endif @if ($showUser->isReviewing($conf)) reviewer @endif @if ($showUser->isOrganizing($conf)) organizer @endif @endif |
@if (!$showUser->isAdmin())
@if (!$showUser->isReviewing($conf))
Set Reviewer
@endif
@if (!$showUser->isOrganizing($conf))
Set Organizer
@endif
@if (!$showUser->isAuthoring($conf))
Set Author
@endif
@else
This user is administrator of system. @endif |