Build a Contact Form with Laravel Livewire

    Set up PHP

    The core language of Laravel Livewire.

    brew install php

    Set up Composer

    A Composer is a tool that incorporates all the dependencies and libraries. It helps the client to create a project with respect to its specified system and project. Third-party libraries can be installed in a project effortlessly utilizing composer.

    brew install composer

    Node JS

    brew install node

    MySQL

    The primary database for this guide will be MySQL. Run the following command to install MySQL using homebrew.

    brew install mysql

    Start the MySQL server using the command below.

    brew services start mysql

    Verify Installations

    To verify the installation is successful, run the following commands in the terminal and make sure you get the versions as output.

    php --version 
    composer --version 
    Node --version 
    mysql --version