@extends('header') @section('head') @parent @stop @section('content')
{!! Former::open('vendors/bulk')->addClass('mainForm') !!}
{!! Former::text('action') !!} {!! Former::text('public_id')->value($project->public_id) !!}
@if ( ! $project->is_deleted) @can('edit', $project) {!! DropdownButton::normal(trans('texts.edit_project')) ->withAttributes(['class'=>'normalDropDown']) ->withContents([ ($project->trashed() ? false : ['label' => trans('texts.archive_project'), 'url' => "javascript:onArchiveClick()"]), ['label' => trans('texts.delete_project'), 'url' => "javascript:onDeleteClick()"], ] )->split() !!} @endcan @if ( ! $project->trashed()) @can('create', ENTITY_TASK) {!! Button::primary(trans("texts.new_task")) ->asLinkTo(URL::to("/tasks/create/{$project->client->public_id}/{$project->public_id}")) ->appendIcon(Icon::create('plus-sign')) !!} @endcan @endif @endif @if ($project->trashed()) @can('edit', $project) {!! Button::primary(trans('texts.restore_project')) ->appendIcon(Icon::create('cloud-download')) ->withAttributes(['onclick' => 'onRestoreClick()']) !!} @endcan @endif {!! Former::close() !!}

{{ trans('texts.details') }}

{{ trans('texts.notes') }}

{{ trans('texts.progress') }}

@stop