Skip to content
/ tallstarter Public template
forked from mortenebak/tallstarter

A opponiated Laravel 12 Livewire Components Starter Kit, with user, role and permission management. Supports localization.

Notifications You must be signed in to change notification settings

barantr90/tallstarter

 
 

Repository files navigation

Tallstarter - A Laravel Livewire Starter Kit

Project Status: Active – The project has reached a stable, usable state and is being actively developed. GitHub last commit GitHub Sponsors

Complete User Management, Role Management and Permissions Management with a Dashboard for Admins. alt text Supporting multiple languages. alt text

Updated for Laravel 12.0 and Livewire 3.0

This repository contains my starting point when developing a new Laravel project. It comes with a basic user management, role management and permissions management and a dashboard.

TALL stack

Further it includes:

Upcoming features

Installation

alt text

laravel new my-project --using=mortenebak/tallstarter

You could also just use this repository as a starting point for your own project by clicking use template. If installing manually, these are the steps to install:

1. Install dependencies

composer install
npm install
npm run build # or npm run dev

2. Configure environment

Setup your .env file and run the migrations.

cp .env.example .env
php artisan key:generate
php artisan storage:link

3. Migration

php artisan migrate

4. Seeding

php artisan db:seed

5. Creating the first Super Admin user

php artisan app:create-super-admin

6. Set default timezone if different from UTC

// config/app.php
return [
    // ...
    
    'timezone' => 'Europe/Copenhagen' // Default: UTC
    
    // ...
];

Developing

Check for code style issues

composer review

This command will run, in order:

  • Laravel/Pint
  • PHPStan
  • Rector (dry-run)
  • PestPHP

Ensuring that your code is up to standard and tested.

Contributing

Feel free to contribute to this project by submitting a pull request.

Credits

I'd like to thank all the people who have contributed to the packages used in this project. Especially Spatie for their great packages, Livewire and Alpinejs for their awesome framework and the Laravel community for their great work. And of course Laravel for their awesome framework, and their Livewire Starter Kit, which this kit is based on.

Donate

If you like this project, please consider donating to support it.

About

A opponiated Laravel 12 Livewire Components Starter Kit, with user, role and permission management. Supports localization.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Blade 55.2%
  • PHP 44.0%
  • Other 0.8%