@if(Auth::user()->role=='admin')
| SL |
Title |
Area of Research |
Document |
Date |
Status |
Action |
@foreach($pending_journals as $k => $j)
| {{$k+1}} |
{{$j->paper_title}} |
{{$j->area_of_research}} |
View Document |
{{$j->created_at}} |
{{status($j->status)}} |
@if(Auth::user()->role != 'author')
Show
Edit
@if($j->status=='1')
Deactive
@elseif($j->status=='0')
Active
@endif
Delete
@endif
|
@endforeach
| SL |
Title |
Area of Research |
Document |
Date |
Status |
Action |
@foreach($live_journals as $k => $j)
| {{$k+1}} |
{{$j->paper_title}} |
{{$j->area_of_research}} |
View Document |
{{$j->created_at}} |
{{status($j->status)}} |
@if(Auth::user()->role != 'author')
Show
Edit
@if($j->status=='1')
Deactive
@elseif($j->status=='0')
Active
@endif
Delete
@endif
|
@endforeach
@endif
@if(Auth::user()->role != 'admin')
@endif