filesystem.blade.php 637 B

123456789101112
  1. <div class="alert alert-info">Filesystems information is read only, to make changes please edit the .env</div>
  2. <div class="form-group row">
  3. <label for="app_name" class="col-sm-3 col-form-label font-weight-bold text-right">Driver</label>
  4. <div class="col-sm-9">
  5. <select class="form-control" disabled>
  6. <option {{config('filesystems.default') == 'local' ? 'selected=""':''}}>Local</option>
  7. <option {{config('filesystems.default') == 's3' ? 'selected=""':''}}>S3</option>
  8. <option {{config('filesystems.default') == 'spaces' ? 'selected=""':''}}>Digital Ocean Spaces</option>
  9. </select>
  10. </div>
  11. </div>