|
|
|
@ -8,7 +8,7 @@ |
|
|
|
Daftar {{ $status }} Project <small>{{ $projects->total() }} {{ trans('project.found') }}</small> |
|
|
|
</h1> |
|
|
|
<div class="well well-sm text-right"> |
|
|
|
<div class="pull-left hidden-xs">{!! str_replace('/?', '?', $projects->appends(Request::except('page'))->render()) !!}</div> |
|
|
|
<div class="pull-left hidden-xs">{{ $projects->appends(Request::except('page'))->render() }}</div> |
|
|
|
{!! Form::open(['method'=>'get','class'=>'form-inline']) !!} |
|
|
|
{!! FormField::select('status', getProjectStatusesList(), ['value' => Request::get('status'), 'placeholder'=> 'Semua Project']) !!} |
|
|
|
{!! Form::text('q', Request::get('q'), ['class'=>'form-control index-search-field','placeholder'=>trans('project.search'),'style' => 'width:100%;max-width:350px']) !!} |
|
|
|
@ -23,7 +23,6 @@ |
|
|
|
<th>{{ trans('project.name') }}</th> |
|
|
|
<th class="text-center">{{ trans('project.start_date') }}</th> |
|
|
|
<th class="text-center">{{ trans('project.work_duration') }}</th> |
|
|
|
{{-- <th class="text-center">{{ trans('project.payments') }}</th> --}} |
|
|
|
<th class="text-right">{{ trans('project.project_value') }}</th> |
|
|
|
<th class="text-center">{{ trans('app.status') }}</th> |
|
|
|
<th>{{ trans('project.customer') }}</th> |
|
|
|
@ -36,7 +35,6 @@ |
|
|
|
<td>{{ $project->nameLink() }}</td> |
|
|
|
<td class="text-center">{{ $project->start_date }}</td> |
|
|
|
<td class="text-right">{{ $project->present()->workDuration }}</td> |
|
|
|
{{-- <td class="text-center">{{ $project->payments_count }}</td> --}} |
|
|
|
<td class="text-right">{{ formatRp($project->project_value) }}</td> |
|
|
|
<td class="text-center">{{ $project->present()->status }}</td> |
|
|
|
<td>{{ $project->customer->name }}</td> |
|
|
|
|