-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c129f5a
commit df06838
Showing
7 changed files
with
36 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 20 additions & 18 deletions
38
resources/views/notifications/components/job-listing.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
<div class="card card-block"> | ||
<h4 class="card-title"> | ||
<a href="{{ $job['url'] }}" target="_blank">{{ $job['title'] }}</a> | ||
</h4> | ||
@if($job['datePosted']) | ||
<p>Posted on {{ date("F jS, Y", strtotime($job['datePosted'])) }}</p> | ||
@endif | ||
@if($job['company']) | ||
<p> | ||
<strong>Company:</strong> | ||
{{ $job['company'] }} | ||
@if($job['industry'] == 'Staffing') | ||
<span class="text-muted">(Professional Recruiter)</span> | ||
@endif | ||
</p> | ||
@endif | ||
<p><strong>Location:</strong> {{ $job['location'] }}</p> | ||
<p><strong>Source:</strong> {{ $job['source'] }}</p> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<h4 class="card-title"> | ||
<a href="{{ $job['url'] }}" target="_blank">{{ $job['title'] }}</a> | ||
</h4> | ||
@if($job['datePosted']) | ||
<p>Posted on {{ date("F jS, Y", strtotime($job['datePosted'])) }}</p> | ||
@endif | ||
@if($job['company']) | ||
<p> | ||
<strong>Company:</strong> | ||
{{ $job['company'] }} | ||
@if($job['industry'] == 'Staffing') | ||
<span class="text-muted">(Professional Recruiter)</span> | ||
@endif | ||
</p> | ||
@endif | ||
<p><strong>Location:</strong> {{ $job['location'] }}</p> | ||
<p><strong>Source:</strong> {{ $job['source'] }}</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<div class="form-group"> | ||
@if (session('user')) | ||
<input type="submit" value="Add Search" class="form-control btn btn-success btn-lg"/> | ||
<input type="submit" value="Add Search" class="mt-3 form-control btn btn-success btn-lg"/> | ||
@else | ||
<input type="submit" value="Sign Up" class="form-control btn btn-success btn-lg"/> | ||
<input type="submit" value="Sign Up" class="mt-3 form-control btn btn-success btn-lg"/> | ||
@endif | ||
<small><a href="/terms">Terms/Privacy Policy</a></small> | ||
</div> |