|
139 | 139 | <blockquote> |
140 | 140 | <p>This guide is for the Filament panel builder. If you are looking to use the Filament UI components outside of a panel, visit the <a href="components">Components</a> documentation.</p> |
141 | 141 | </blockquote> |
142 | | -<p>To start with, visit <code>/admin</code> and sign in with a user account. You will be redirected to the default dashboard of the panel.</p> |
| 142 | +<p>To start, visit <code>/admin</code> and sign in with a user account. You will be redirected to the default dashboard of the panel.</p> |
143 | 143 | <h2 id="resources">Resources</h2> |
144 | 144 | <p>Resources are the core of your Filament application. They are CRUD UIs for models that you want to manage in the panel.</p> |
145 | | -<p>Out of the box, Filament will generate 3 pages in each resource:</p> |
| 145 | +<p>Out of the box, Filament will generate three pages in each resource:</p> |
146 | 146 | <ul> |
147 | 147 | <li><strong>List</strong>: A paginated table of all the records in the Eloquent model.</li> |
148 | 148 | <li><strong>Create</strong>: A form to create a new record.</li> |
149 | 149 | <li><strong>Edit</strong>: A form to edit an existing record.</li> |
150 | 150 | </ul> |
151 | | -<p>You can choose to also generate a <strong>View</strong> page, which is a read-only display of a record.</p> |
| 151 | +<p>You can also choose to generate a <strong>View</strong> page, which is a read-only display of a record.</p> |
152 | 152 | <p>Each resource usually has an item in the sidebar, which is automatically registered as soon as you create a resource.</p> |
153 | 153 | <p>To start your journey by creating a resource, visit the <a href="resources">Resources documentation</a>.</p> |
154 | 154 | <h2 id="widgets">Widgets</h2> |
155 | | -<p>Widgets are components often used to build a dashboard, often to display statistical data. Charts, numbers, tables, and completely custom widgets are supported.</p> |
| 155 | +<p>Widgets are components often used to build a dashboard, typically to display statistical data. Charts, numbers, tables, and completely custom widgets are supported.</p> |
156 | 156 | <p>Each widget has a PHP class and a Blade view. The PHP class is technically a <a href="https://livewire.laravel.com/docs/components">Livewire component</a>. As such, every widget has access to the full power of Livewire to build an interactive server-rendered UI.</p> |
157 | 157 | <p>Out of the box, Filament’s dashboard contains a couple of widgets: one which greets the user and allows them to sign out, and another which displays information about Filament.</p> |
158 | 158 | <p>To start your journey by adding your own widget to the dashboard, visit the <a href="widgets">Widgets documentation</a>.</p> |
|
0 commit comments