TaskA/resources/views/components/input-label.blade.php

6 lines
143 B
PHP
Raw Permalink Normal View History

2024-06-16 08:11:32 +00:00
@props(['value'])
<label {{ $attributes->merge(['class' => 'block font-medium text-sm text-gray-700']) }}>
{{ $value ?? $slot }}
</label>