Skip to content

Commit d5d1eb3

Browse files
committed
Project Page Updated to have the new fields
1 parent 59585de commit d5d1eb3

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

resources/views/project.blade.php

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,28 @@
33
@section('content')
44
<h1>{{ $project->title }}</h1>
55
<h3>{{ $project->description }}</h3>
6-
<a href="/members/{{ $project->id }}">Members</a>
6+
7+
@if($project->github_link)
8+
<h3><a href="{{$project->github_link}}">GitHub Link</a></h3>
9+
@endif
10+
11+
@if($project->slack_link)
12+
<h3><a href="{{$project->slack_link}}">Slack Link</a></h3>
13+
@endif
14+
15+
@if($project->website_link)
16+
<h3>{{ $project->website_link }}</h3>
17+
@endif
18+
19+
@if($project->get_involved_pitch)
20+
<h3>{{ $project->get_involved_pitch }}</h3>
21+
@endif
22+
23+
@if($project->project_admin_user_id)
24+
<h3><a href="/user/{{$project->project_admin_user_id}}">Project Admin</a></h3>
25+
@endif
26+
27+
<h4><a href="/members/{{ $project->id }}">Members</a></h4>
728

829
<div>
930
</div>

0 commit comments

Comments
 (0)