Files
lsky-pro/resources/views/components/textarea.blade.php
T
2022-01-26 17:48:04 +08:00

4 lines
281 B
PHP

@props(['disabled' => false])
<textarea {{ $disabled ? 'disabled' : '' }} {!! $attributes->merge(['class' => 'mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50']) !!}>{{ $slot ?? '' }}</textarea>