Skip to content

Commit

Permalink
finishing up the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Lea authored and Tony Lea committed Oct 21, 2024
1 parent 25a1bc7 commit 36ad3cb
Show file tree
Hide file tree
Showing 7 changed files with 345 additions and 29 deletions.
4 changes: 2 additions & 2 deletions content/docs/customizations.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: Customizations
description: Learn how to add some basic customizations to your application
prevTitle: 'Local Development'
prevURL: '/docs/local-dev'
nextTitle: 'Upgrading'
nextURL: '/docs/upgrading'
nextTitle: 'Your Functionality'
nextURL: '/docs/your-functionality'
---

# Customizations
Expand Down
11 changes: 5 additions & 6 deletions content/docs/guides/about.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: About Guides
description: Learn how you can host your website and make it live for the world to see.
nextTitle: 'Creating Themes'
nextURL: '/docs/guides/creating-themes'
prevTitle: 'Prompts'
prevURL: '/docs/prompts/create-a-role'
prevTitle: 'Create a Plugin'
prevURL: '/docs/prompts/create-plugin'
nextTitle: 'Using Filament with Volt'
nextURL: '/docs/guides/using-filament-with-volt'
---


Expand All @@ -24,8 +24,7 @@ We will be adding more guides in the future, so be sure to check back on this pa

## Current Guides

- <a href="{ url('/docs/guides/creating-themes') }">Creating Themes</a>
- <a href="{ url('/docs/guides/theme-structure') }">Theme Structure</a>
- <a href="{ url('/docs/guides/using-filament-with-volt') }">Using Filament With Volt</a>

## What's Next?

Expand Down
31 changes: 31 additions & 0 deletions content/docs/guides/using-filament-with-volt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Using Filament With Volt
description: Learn how to use FilamentPHP with any Volt page
prevTitle: 'About Guides'
prevURL: '/docs/guides/about'
nextTitle: ''
nextURL: null
---

# Using Filament with Volt

Using Filament with Wave and Volt can make your life a lot easier. In this guide we will use the example from the <a href="{ url('/docs/your-functionality' )}">Your Functionality</a> section and show you how to implement the same functionality using the <a href="https://filamentphp.com/docs/tables/installation" target="_blank">Table Builder</a> and the <a href="https://filamentphp.com/docs/forms/installation" target="_blank">Form Builder</a>.

- [Using Filament with Volt](#using-filament-with-volt)
- [Using the Table Builder](#using-the-table-builder)
- [Using the Form Builder](#using-the-form-builder)


We will assume that you've already added the **database migration** and the **model** for the `projects` table in <a href="{ url('/docs/your-functionality' )}">this section</a>. Be sure to finish that section before continuing with this guide.

## Using the Table Builder

Looking at the **volt project page** that we created inside the theme page directory at `pages/projects/index.blade.php` we can utilize the Table builder to easily display our projects in a nice table view:

```php
<?php

>
```

## Using the Form Builder
4 changes: 2 additions & 2 deletions content/docs/prompts/create-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: Creating a Plugin
description: Create a plugin using an artisan command
prevTitle: 'Create a Role'
prevURL: '/docs/prompts/create-role'
nextTitle: ''
nextURL: null
nextTitle: 'About Guides'
nextURL: '/docs/guides/about'
---

## Create a Plugin
Expand Down
4 changes: 2 additions & 2 deletions content/docs/upgrading.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Upgrading Wave
description: Learn how to upgrade Wave
prevTitle: 'Customizations'
prevURL: '/docs/customizations'
prevTitle: 'Your Functionality'
prevURL: '/docs/your-functionality'
nextTitle: 'Authentication'
nextURL: '/docs/features/auth'
---
Expand Down
Loading

0 comments on commit 36ad3cb

Please sign in to comment.