@extends('layouts.job') @section('subtitle', __('job.detail')) @section('action-buttons') @can('create', new App\Entities\Projects\Job) {!! html_link_to_route('projects.jobs.create', __('job.create'), [$job->project_id], ['class' => 'btn btn-success','icon' => 'plus']) !!} @endcan @can('update', $job) {{ link_to_route('jobs.edit', __('job.edit'), [$job], ['class' => 'btn btn-warning']) }} @endcan @endsection @section('content-job')
@include('jobs.partials.job-show')
@include('jobs.partials.job-dates') @include('jobs.partials.job-tasks-operation')
@include('jobs.partials.job-tasks')
@endsection @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