9 lines
245 B
PHP
9 lines
245 B
PHP
{{-- resources/views/components/label.blade.php --}}
|
|
@props(['for' => null, 'value' => null])
|
|
|
|
<label
|
|
{{ $attributes->merge(['class' => 'block text-sm font-medium text-gray-700']) }}
|
|
for="{{ $for }}"
|
|
>
|
|
{{ $value ?? $slot }}
|
|
</label> |