Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/raccoon254/laraveltemplate

The Laravel Template repository serves as a foundational blueprint for developers looking to kickstart their Laravel projects with a modern stack. Instead of setting up the commonly used features every time, this template offers a seamless integration of authentication to ensure security. It employs Tailwind CSS to facilitate rapid UI design.
https://github.com/raccoon254/laraveltemplate

Last synced: 12 days ago
JSON representation

The Laravel Template repository serves as a foundational blueprint for developers looking to kickstart their Laravel projects with a modern stack. Instead of setting up the commonly used features every time, this template offers a seamless integration of authentication to ensure security. It employs Tailwind CSS to facilitate rapid UI design.

Awesome Lists containing this project

README

        

Laravel Logo

## About Laravel Template

Laravel template is an extension of the Laravel framework. It is a template that is used to create a new Laravel project
with the following features:

- Authentication
- Tailwind CSS
- DaisyUI
- Laravel Livewire

## Installation

clone the repository

```bash
git clone https://github.com/Raccoon254/laraveltemplate.git [your project name]
```

Install composer dependencies

```bash
composer install
```

Install npm dependencies

```bash
npm install
```

Create a copy of your .env file

```bash
cp .env.example .env
```

Configure your .env file
Set the application key

```bash
php artisan key:generate
```

Run the database migrations

```bash
php artisan migrate
```

Serve the application

```bash
npm run start
```

## Database

MariaDB is used as the database for this project. Create a database and update the .env file with the database name,
username and password.

```env
DB_CONNECTION=mysql
DB_HOST=
DB_PORT=
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
```

## License

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