Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Order of "Getting Started" section #1883

Merged
merged 2 commits into from
Aug 24, 2024
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
6 changes: 3 additions & 3 deletions docs/start/commands.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
title: Commands
weight: 6
weight: 5
---

## Generating Datatable Components

To generate a new datatable component you can use the `make:datatable` command:

Create a new datatable component called `UserTable` in `App\Livewire` that uses the `App\Models\User` model.
Create a new datatable component called `UsersTable` in `App\Livewire` that uses the `App\Models\User` model.

```bash
php artisan make:datatable UserTable User
php artisan make:datatable UsersTable User
```

### Custom Model Path
Expand Down
2 changes: 1 addition & 1 deletion docs/start/rendering.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Rendering
weight: 5
weight: 6
---

## Rendering Components
Expand Down
Loading