@extends('layouts.app') @section('title', trans('job.show') . ' | ' . $job->name . ' | ' . $job->project->name) @section('content') @include('jobs.partials.breadcrumb')

{!! html_link_to_route('projects.jobs.create', trans('job.create'), [$job->project_id], ['class' => 'btn btn-success','icon' => 'plus']) !!} {!! link_to_route('jobs.edit', trans('job.edit'), [$job->id], ['class' => 'btn btn-warning']) !!} {!! link_to_route('projects.jobs.index', trans('job.back_to_index'), [$job->project_id, '#' . $job->id], ['class' => 'btn btn-default']) !!}
{{ $job->name }} {{ trans('job.show') }}

@include('jobs.partials.job-show')
@include('jobs.partials.job-tasks-operation')
@include('jobs.partials.job-tasks') @endsection @if (Request::get('action') == 'task_edit' && $editableTask) @section('ext_css') {!! Html::style(url('assets/css/plugins/rangeslider.css')) !!} @endsection @section('ext_js') {!! Html::script(url('assets/js/plugins/rangeslider.min.js')) !!} @endsection @section('script') @endsection @endif