Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion resources/views/functional/form-builder.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
:restore-on-success="$form->getOption('restore_on_success')"

:preserve-scroll="$form->getOption('preserve_scroll')"

:blob="$form->getOption('blob')"

{{ $attributes->rejectWhenBlank('id')->except('class') }}
>
@foreach($form->getFields() as $field)
{!! $field->render() !!}
Expand Down
2 changes: 0 additions & 2 deletions src/SpladeForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ public function validate(?Request $request = null, ...$params): array
/**
* Handle server response as a blob to allow downloading files.
*
* @param bool $blob
* @return $this
*/
public function blob(bool $blob = true): self
Expand All @@ -313,5 +312,4 @@ public function blob(bool $blob = true): self

return $this;
}

}