15 lines
504 B
PHP
15 lines
504 B
PHP
@extends('admin.layouts.app')
|
|
|
|
@section('title', '编辑节日福利活动')
|
|
|
|
@section('content')
|
|
@include('admin.holiday-events.partials.form', [
|
|
'event' => $event,
|
|
'action' => route('admin.holiday-events.update', $event),
|
|
'method' => 'PUT',
|
|
'pageTitle' => '✏️ 编辑节日福利活动',
|
|
'pageDescription' => '可继续维护旧规则,也可切换到 yearly 年度节日高级调度。',
|
|
'submitLabel' => '💾 保存修改',
|
|
])
|
|
@endsection
|