@extends('layouts.user') @section('subtitle', trans('user.jobs')) @section('content-user')
| {{ trans('app.table_no') }} | {{ trans('project.name') }} | {{ trans('job.name') }} | {{ trans('job.tasks_count') }} | {{ trans('job.progress') }} | {{ trans('job.price') }} | {{ trans('app.action') }} | @forelse($jobs as $key => $job)
|---|---|---|---|---|---|---|
| {{ 1 + $key }} | {{ $job->project->nameLink() }} |
{{ $job->nameLink() }}
@if ($job->tasks->isEmpty() == false)
|
{{ $job->tasks_count = $job->tasks->count() }} | {{ format_decimal($job->progress = $job->progress) }} % | {{ format_money($job->price) }} | {!! html_link_to_route('jobs.show', '', [$job], [ 'icon' => 'search', 'class' => 'btn btn-info btn-xs', 'title' => trans('job.show') ]) !!} |
| {{ trans('job.empty') }} | ||||||