1
0

task-group.blade.php 647 B

123456789101112
  1. @props(['type', 'items', 'units', 'feature' => null])
  2. <div class="col-12 row" id="{{ "tasks_$type" }}" data-feature="{{ $feature }}">
  3. <hr class="col-12 hr-text" data-content="{{ trans("model.config.tasks_$type") }}" />
  4. @foreach ($items as $key => $duration)
  5. <x-system.input-unit type="{{ $type }}" :key="$key" :value="$duration['num']" :unit="$duration['unit']" :units="$units" />
  6. @endforeach
  7. <div class="col-12 text-center mt-md-15 mb-20">
  8. <button class="btn btn-primary w-p25" type="button" onclick="updateJson('{{ "tasks_$type" }}')">
  9. {{ trans('common.update') }}
  10. </button>
  11. </div>
  12. </div>