@extends('layouts.default') @section('title','调休信息') @section('content') @include('shared._messages')
新增调休
@foreach($holidays as $h) @if ($h->workday_name != null) @else @endif @endforeach
日期 类型 调上班 备注 操作
{{ $h->date }} {{ $h->holiday_type }}{{$h->work_date}}, 周{{ $workdays[$h->workday_name] }}{{ $h->note }} 编辑
{{ method_field('DELETE') }} {{ csrf_field() }}
@if (count($holidays)>config('page.PAGE_SIZE')) @include('shared._pagination') @endif @stop