Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/raccoon254/laraveltemplate
- Owner: Raccoon254
- Created: 2023-10-17T03:58:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-15T02:36:19.000Z (8 months ago)
- Last Synced: 2024-03-15T03:55:58.335Z (8 months ago)
- Language: PHP
- Size: 138 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 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).