v2 beta docs. Upgrade guide Back to v1

Setup

Requirements

Make sure you a have a fresh Laravel 12+ project up and running on your browser, without any starter kit. Yes, you can use maryUI with Jetstream/Breeze on your own projects, but let's keep things simple for now and start from the ground.

  • Fresh Laravel 12+ project up and running.
  • No starter kit.
  • SQLite database.
laravel new myapp
Before proceeding, make a local commit to keep track of what is going on.

Install maryUI

Make sure you have selected "Volt" during this install.

# This will change after v2 release
composer require robsontenorio/mary:V2.x-dev
 
php artisan mary:install

Start the dev server.

yarn dev

Check the browser!

We are using Livewire Volt, take a look at:

  • routes/web.php
  • resources/views/livewire/users/index.blade.php.
Check the source code diff and commit it.

Improving the example

You have a basic working example, but the data is hardcoded. Let's make it work with a real database and add some new models and relationships.

Creating models has nothing to do with maryUI. So, we have created a command to do it for you and speed things up. After running it, it is important to take a look at the database to see what is going on.

php artisan mary:bootcamp
  • Create a new Country model.
  • Create a new Languagemodel.
  • Create a User belongs to Country relationship.
  • Create a User many-to-many Language relationship.
  • Create their respective migrations/factories/seeders.
  • Randomly seed the database with users, countries, languages and its relationships.

If you hit the browser again, of course, nothing has changed. On the next topic we will work on that component.

Before proceeding, make a local commit to keep track of what is going on.

Made with by Robson TenĂ³rio and contributors.