@if ($type == "freelancer")
Title |
Catagory |
Skills |
Discription |
Budget Type |
Budget |
@else
Campaign Title |
Minimum Followers |
Gender |
Catagories |
Platforms |
Campaign Discription |
@endif
Status |
Action |
@foreach ($jobPosts as $jobPost)
@if ($type == "freelancer")
{{ $jobPost->title }} |
{{ $jobPost->catagory }} |
{{ collect($jobPost->skills)->join(',', ' and ') }} |
{{ $jobPost->discription }} |
{{ $jobPost->budgetType }} |
{{ $jobPost->budget }} |
@else
{{ $jobPost->title }} |
{{ $jobPost->minimum_followers }} |
{{ $jobPost->gender }} |
{{ collect($jobPost->categories)->join(',', ' and ') }} |
{{ collect($jobPost->platforms)->join(',', ' and ') }} |
{{ $jobPost->discription }} |
@endif
@if ($jobPost->is_approved)
Approve
@else
Pending
@endif
|
@if (!$jobPost->is_approved)
type}.jobpost.review", $jobPost->id) }}">
@endif
|
@endforeach
{{ $jobPosts->links() }}