PHPackages                             torrix/laravel-uikit - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. torrix/laravel-uikit

ActiveLibrary

torrix/laravel-uikit
====================

UIkit starter template for Laravel

v3.16.24(2y ago)692.1k↓100%9[1 PRs](https://github.com/torrix/laravel-uikit/pulls)MITBladePHP ^8.2

Since Sep 17Pushed 2y ago4 watchersCompare

[ Source](https://github.com/torrix/laravel-uikit)[ Packagist](https://packagist.org/packages/torrix/laravel-uikit)[ RSS](/packages/torrix-laravel-uikit/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (9)Used By (0)

UIkit starter template for Laravel
==================================

[](#uikit-starter-template-for-laravel)

Including authentication scaffolding for Laravel Fortify
--------------------------------------------------------

[](#including-authentication-scaffolding-for-laravel-fortify)

[![A screenshot of the UIkit starter template for Laravel](/screenshot.jpg?raw=true)](/screenshot.jpg?raw=true)

Out of the box, Laravel ships with a default welcome template built with [Tailwind CSS](https://tailwindcss.com). On top of the base framework, [Laravel JetStream](https://jetstream.laravel.com/) provides two user interfaces (your choice of Laravel Livewire or InertiaJS) for login and register pages whilst [Laravel Fortify](https://github.com/laravel/fortify)provides the authentication backend.

Although Tailwind CSS is quickly gaining popularity, many people, like me, prefer a more traditional front-end framework, like Bootstrap, Foundation, or Bulma. I choose **[UIkit](https://getuikit.com/)** by [YOOtheme](https://yootheme.com/) because I found it to be the most modern, clean, well-thought-out, and modular framework available.

Why UIkit?
----------

[](#why-uikit)

I've used UIkit for just about every project I've worked on in the last few years, for both websites and web applications, from tiny single-page landing sites, to massive web applications with thousands of users.

This package enhances Laravel with a starter template for UIkit, and gives you everything you need to start your next web project.

What's included?
----------------

[](#whats-included)

- UIkit package (installed via composer)
- Sass starter file, to customise your UIkit CSS
- JavaScript to load UIkit libraries
- Welcome page
- UIkit demo page
- Optional views for:
    - Log In
    - Register
    - Forgot Password
    - Reset Password
    - Verify Email

What's still to come?
---------------------

[](#whats-still-to-come)

- Profile pages
- Two-factor authentication

Getting Started
---------------

[](#getting-started)

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See Deployment for notes on how to deploy the project on a live system.

### Prerequisites

[](#prerequisites)

To begin, you'll need a **fresh** install of Laravel 10+. **Adding this to an existing project is not recommended and may cause issues**. For full instructions on installing Laravel, refer to the [Laravel installation docs](https://laravel.com/docs/9.x/installation), but something like the following will get you up and running:

```
composer global require laravel/installer

laravel new mysite

cd mysite

```

### Installing this preset

[](#installing-this-preset)

To turn the base Laravel installation into a UIkit site, follow the steps below.

1. Include this repository into your composer dependencies:

```
composer require torrix/laravel-uikit

```

2. Run the artisan command to publish the necessary files into your Laravel install. It will overwrite welcome.blade.php, so do not run this on established projects with changes made to that file.

```
php artisan vendor:publish --provider="Torrix\LaravelUikitServiceProvider" --force

```

3. (optional) Include Laravel Fortify, if you want to make use of the ready-made authentication system. You will need to create a database, and configure the file `.env` with the correct credentials for it.

```
composer require laravel/fortify

php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"

php artisan migrate

```

Add in `config/app.php`:

```
 'providers' => [
        // ...
        App\Providers\FortifyServiceProvider::class,
    ],

```

4. Run NPM to build your CSS and JS assets using Laravel Mix:

```
npm install && npm run dev

```

Sometimes, `npm run dev` needs to be run twice to complete the installation. Read the output carefully to see if this is the case.

5. Run the built-in development server

```
php artisan serve

```

Your new site will be served at .

Developing with UIkit
---------------------

[](#developing-with-uikit)

To get started in UIkit, read [their excellent docs](https://getuikit.com/docs/introduction). The examples and tests provided should give you all the help you need. To get an idea of what UIkit is capable of, I highly recommend the [KickOff starter templates](https://zzseba78.github.io/Kick-Off/) for inspiration.

To start customising UIkit to your own needs, take a look in [app.scss](resources/sass/app.scss). In there, you will find the standard UIkit imports, and by way of a simple example, I've changed the default blue primary colour to a nice purple shade, just to show what's possible in almost no time at all. Try changing it to another colour, and then running `npm run dev` to rebuild the CSS, and see the changes to your site.

### Handy tip

[](#handy-tip)

Whilst developing your site, running Laravel Mix in watch mode makes it easy to make changes and quickly see their results:

```
npm run watch

```

Deployment
----------

[](#deployment)

When deploying to a live server, remember to build your assets in production mode for smaller, faster downloads:

```
npm run prod

```

Built With
----------

[](#built-with)

- [UIkit](https://getuikit.com/) - The beautiful, powerful front-end framework that you'll be delighted to build your next Laravel project with!
- [Laravel](https://laravel.com/) - The awesome PHP framework that makes all of this worthwhile.
- [Laravel Fortify](https://github.com/laravel/fortify) - The backend Laravel 9 uses to power its authentication system.

Author
------

[](#author)

**Matt Fletcher** @ [Torrix](https://torrix.uk)

License
-------

[](#license)

This template is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT) - see the [LICENSE.md](LICENSE.md) file for details

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity72

Established project with proven stability

 Bus Factor1

Top contributor holds 85.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~175 days

Recently: every ~263 days

Total

7

Last Release

1011d ago

Major Versions

v0.1.5 → v3.16.242023-08-06

PHP version history (2 changes)v0.1.4PHP ^8.0.2

v3.16.24PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/a1ffaf7e628d02e188234ff6a70f4956bc0e79eed218ce24508165545ca2ec26?d=identicon)[torrix](/maintainers/torrix)

---

Top Contributors

[![mattfletcher](https://avatars.githubusercontent.com/u/414180?v=4)](https://github.com/mattfletcher "mattfletcher (12 commits)")[![thewebartisan7](https://avatars.githubusercontent.com/u/57477934?v=4)](https://github.com/thewebartisan7 "thewebartisan7 (2 commits)")

---

Tags

laravellaravel-breezeuikitlaraveljetstreamfortifyuikit

### Embed Badge

![Health badge](/badges/torrix-laravel-uikit/health.svg)

```
[![Health](https://phpackages.com/badges/torrix-laravel-uikit/health.svg)](https://phpackages.com/packages/torrix-laravel-uikit)
```

###  Alternatives

[laravel-lang/publisher

Localization publisher for your Laravel application

2167.7M24](/packages/laravel-lang-publisher)[laravel-lang/common

Easily connect the necessary language packs to the application

1463.1M22](/packages/laravel-lang-common)[nascent-africa/jetstrap

A Laravel 8 package to easily switch TailwindCSS resources generated by Laravel Jetstream to Bootstrap 4 or 5.

709210.5k1](/packages/nascent-africa-jetstrap)[amendozaaguiar/laraveles-spanish-for-jetstream

Archivos de traducción al español latinoamericano para Laravel con Jetstream (auth, pagination, passwords, validation + todas las cadenas de Jetstream).

1412.1k](/packages/amendozaaguiar-laraveles-spanish-for-jetstream)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
