between.blade.php 817 B

12345678910111213
  1. <div class="filter-input col-sm-{{ $width }} " style="{!! $style !!}">
  2. <div class="form-group" >
  3. <div class="input-group input-group-sm">
  4. <div class="input-group-prepend">
  5. <span class="input-group-text text-capitalize bg-white"><b>{!! $label !!}</b></span>
  6. </div>
  7. <input type="text" class="form-control" placeholder="{{$label}}" name="{{$name['start']}}" value="{{ request($name['start'], \Illuminate\Support\Arr::get($value, 'start')) }}">
  8. <span class="input-group-addon" style="border-left: 0; border-right: 0;">To</span>
  9. <input type="text" class="form-control" placeholder="{{$label}}" name="{{$name['end']}}" value="{{ request($name['end'], \Illuminate\Support\Arr::get($value, 'end')) }}">
  10. </div>
  11. </div>
  12. </div>