/laravel-chirper

Laravel Bootcamp! In this guide we will walk through building a modern Laravel application from scratch.

Primary LanguagePHP

Laravel Logo

🌟 Build Chirper with Inertia

🚀 Introduction

This project is part of the Laravel Bootcamp! In this guide, we will create a modern Laravel application from scratch. We're diving into the creation of a microblogging platform known as "Chirper," exploring the various facets of the Laravel framework.

Choose Your Own Adventure: JavaScript, Inertia, PHP, & Tailwind

Laravel grants incredible flexibility, allowing the construction of your front-end with various technologies tailored to your needs. This tutorial offers several exciting pathways.

JavaScript & Inertia

If JavaScript is your choice, we've got you covered! We provide code samples for both Vue and React. We're integrating Inertia to tie everything together and employing Tailwind CSS for that sleek visual appeal!

If you're pondering over options, we recommend Vue for its user-friendly nature and robust features. And remember, once you've navigated through the Bootcamp, you can revisit to experience the alternate stack!

Ready for the thrill? Select your stack and embark on this coding voyage!

<template>
  <Welcome>
      Hey {{ friend }}, let's build Chirper with Vue!
  </Welcome>
</template>

🔨 Installation

Follow these steps to set up and launch your application:

Clone the Project
Execute this command in your terminal:
sh
Copy code
git clone https://github.com/hanifeoglu/laravel-chirper.git
Navigate to the Project Directory
Change into the project directory on your system:
sh
Copy code
cd laravel-chirper
Install PHP Dependencies
Run the following to install the necessary PHP components:
sh
Copy code
composer install
Install JavaScript Dependencies & Compile Assets
Address your JavaScript requirements with:
sh
Copy code
npm install && npm run dev
Ignite the Application
Get your application up and running using:
sh
Copy code
php artisan serve
Access your application in your browser at http://localhost:8000.


Happy coding, and here's to an amazing experience building Chirper! 🎉 Should you have questions or need assistance, feel free to reach out to salih@hanifeoglu.com. We're here for you!



## Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).

## Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).

## Security Vulnerabilities

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.

## License

The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
# laravel-chirper