@extends('backend.layouts.app')
@section('content')
担当者別作業予定表
{{ Form::open(["route"=>"backend.{$department}.process.schedule", "method"=>"get", "id"=>"search_submit"]) }}
@php
$tomorrow = Carbon::parse($current_date)->copy()->addDay()->format('Y-m-d');
@endphp
{{ Form::close() }}
@php
$section_list = [];
if($department == 'parts'){
$section_list = \App\Models\User::PARTS_SECTION;
} else if($department == 'moritis'){
$section_list = \App\Models\User::MORITIS_SECTION;
}
@endphp
- ALL
@foreach ($section_list as $id => $name)
-
{{ $name }}
@endforeach
-
@include('backend.share.process._schedule_table', ['id' => 0])
@foreach ($section_list as $id => $name)
-
@include('backend.share.process._schedule_table', ['params' => $process_params[$id]])
@endforeach
{{ Form::open(["route"=>"backend.{$department}.process.store", "method"=>"post", "id"=>"store_submit_form"]) }}
{{ Form::close() }}
@endsection
@section('page_js')
@endsection
@section('page_css')
@endsection