[6.x] Inertia filesystems#18932
Conversation
| <template> | ||
| <AppLayout> | ||
| <Pane appearance="raised"> | ||
| <div class="grid gap-3"> |
There was a problem hiding this comment.
It's probably good to have a <FormFields> wrapper that defines the spacing, just so it's consistent everywhere and if it has to change it's only in 1 file, or have <Pane> be a grid by default
| @@ -0,0 +1,130 @@ | |||
| <script setup lang="ts"> | |||
There was a problem hiding this comment.
It might make sense to start putting pages in folders, for example pages/settings/filesystems/EditFilesystemPage.vue
Seb wrote a blog on how Spatie structures Inertia apps and there might be some ideas in there we could use as well.
For example if there are components needed just for filesystems we could put them in pages/settings/filesystems/components
| name="url" | ||
| :required="true" | ||
| placeholder="//example.com/path/to/folder" | ||
| data-error-key="url" |
There was a problem hiding this comment.
Do we always have to provide this or could we fall back to what's provided in name for example and only need to provide this when it's different than the input name?
Description
Related issues