@extends('layouts.panel-template', ['section' => 'home_works'])
@section('header-content')
notifications
{{ $detailData['header']['user_name'] }}
{{ $detailData['header']['user_role'] }}
@endsection
@php
$items = [
[
'title' => '',
'key' => 'general',
'icon' => '',
'label' => 'Resumen',
],
[
'title' => '',
'key' => 'progress',
'icon' => '',
'label' => 'Avance',
],
[
'title' => '',
'key' => 'subtasks',
'icon' => '',
'label' => 'Subtareas',
],
[
'title' => '',
'key' => 'budgets',
'icon' => '',
'label' => 'Presupuesto',
],
[
'title' => '',
'key' => 'piecework',
'icon' => '',
'label' => 'Destajo',
],
[
'title' => '',
'key' => 'employees',
'icon' => '',
'label' => 'Personal',
],
[
'title' => '',
'key' => 'alerts',
'icon' => '',
'label' => 'Alertas',
],
[
'title' => '',
'key' => 'evidence',
'icon' => '',
'label' => 'Evidencia',
],
];
@endphp
@section('main-content')
@include('home-work.wizard-steps.general')
@include('home-work.wizard-steps.progress')
@include('home-work.wizard-steps.subtasks')
@include('home-work.wizard-steps.budgets')
@include('home-work.wizard-steps.pieceworks')
@include('home-work.wizard-steps.employees')
@include('home-work.wizard-steps.alerts')
@include('home-work.wizard-steps.evidence')
@endsection