task-group.blade.php 535 B

123456789101112
  1. @props(['type', 'items', 'units'])
  2. <div class="col-12 row" id="{{ "tasks_$type" }}">
  3. <hr class="col-12" />
  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>