We are finally ready to start our Mobile Application development!
To do this, we have to start with something. In this case, we want to:
- Create a new Laravel project with Livewire
- Install NativePHP Mobile Package
Let's start by creating a new project:
Creating a Laravel Project for a Mobile App
Before creating our Project, let's talk about the Livewire choice. While NativePHP supports Blade, Livewire, and Inertia, we thought that it's best to use Livewire for these reasons:
- It's as close to Blade as possible
- It allows us to do real-time updates, which we feel is essential for mobile applications
That said, we can create our new Project by running:
laravel new NativePHP-Events-Mobile-App --using=laravel/livewire-starter-kit