PHPackages                             hz-hbo-ict/laravel-core-ui - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. hz-hbo-ict/laravel-core-ui

AbandonedArchivedLibrary[Authentication &amp; Authorization](/categories/authentication)

hz-hbo-ict/laravel-core-ui
==========================

Easy to use package with authentication scaffold that provides an easy implementation of CoreUI within Laravel

v4.0.0(5y ago)92.1k7[1 issues](https://github.com/HZ-HBO-ICT/Laravel-CoreUI/issues)MITBladePHP ^7.3

Since Jan 14Pushed 5y ago1 watchersCompare

[ Source](https://github.com/HZ-HBO-ICT/Laravel-CoreUI)[ Packagist](https://packagist.org/packages/hz-hbo-ict/laravel-core-ui)[ RSS](/packages/hz-hbo-ict-laravel-core-ui/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (2)Versions (41)Used By (0)

Laravel CoreUI integration
==========================

[](#laravel-coreui-integration)

[![Latest Stable Version](https://camo.githubusercontent.com/972e58171eebf5a0ce6724dc0a036ea1bc77d701215fa694e1bb95744d67c620/68747470733a2f2f706f7365722e707567782e6f72672f687a2d68626f2d6963742f6c61726176656c2d636f72652d75692f762f737461626c65)](https://packagist.org/packages/hz-hbo-ict/laravel-core-ui)[![Total Downloads](https://camo.githubusercontent.com/21caa374fec97dc2b87d40c14d9181a3fcfd81775617ba2956ddf04ba40ed8f8/68747470733a2f2f706f7365722e707567782e6f72672f687a2d68626f2d6963742f6c61726176656c2d636f72652d75692f646f776e6c6f616473)](https://packagist.org/packages/hz-hbo-ict/laravel-core-ui)[![MIT Licensed](https://camo.githubusercontent.com/8dd1c7cb488802f4fe272b16432d65eab02d4c2de8c8a06a9d6b90c52c4e1515/68747470733a2f2f706f7365722e707567782e6f72672f687a2d68626f2d6963742f6c61726176656c2d636f72652d75692f6c6963656e7365)](https://packagist.org/packages/hz-hbo-ict/laravel-core-ui)

This is an opinionated package designed to help our freshman year's students with rapid prototyping of web applications.

The package is based upon [CoreUI](https://coreui.io/), with every plugin we deemed unnecessary removed. It builds upon the latest stable releases of [Laravel](https://laravel.com). As of now, that is version `8.x`.

It also incorporates a replacement command for Laravel's old [`ui:auth`](https://laravel.com/docs/6.0/authentication#introduction) command that uses CoreUI styled views for a more consistent user experience.

The result is an easy to use package that can setup a secure and complete dashboard front-end in a matter of seconds. Adding new views and features is a breeze and doesn't disrupt your normal workflow.

Installation
------------

[](#installation)

```
$ composer require hz-hbo-ict/laravel-core-ui
$ php artisan vendor:publish --provider="HzHboIct\LaravelCoreUI\ServiceProvider" --tag=assets
```

Usage
-----

[](#usage)

For all the available CoreUI components, see [the official demo](https://coreui.io/demo/#main.html) and [the official documentation](https://coreui.io/docs/getting-started/introduction/).

To use the template, create a blade file and extend the layout with `@extends('coreui::master')`.

This template yields multiple sections, all of them optional:

`section`explanation`title`for `` tag`breadcrumb`for breadcrumb bar`body`for all of the content`footer`for all of the footer content`css`for additional CSS files`js`for additional JavaScript filesA page can look like this:

```
@extends('coreui::master')

@push('css')

@endpush

@section('title', 'Dashboard')

@section('breadcrumb')
    a breadcrumb item
@stop

@section('body')
    Dashboard
    Welcome to this awesome web app!
@endsection

@section('footer')
    My awesome footer!
@endsection

@push('js')

@endpush
```

CoreUI authentication views
---------------------------

[](#coreui-authentication-views)

There's a command `ui:coreui` that behaves just like the built-in `ui:auth` command, but it replaces the default views with [CoreUI styled ones](https://coreui.io/demo/login.html)

```
$ php artisan ui:coreui
```

Configuration
-------------

[](#configuration)

To edit site title, menu and other things, publish the configuration file:

```
$ php artisan vendor:publish --provider="HzHboIct\LaravelCoreUI\ServiceProvider" --tag=config
```

You can now edit it at `config/coreui.php`.

Customized views
----------------

[](#customized-views)

If you need complete control of the provided views, run:

```
$ php artisan vendor:publish --provider="HzHboIct\LaravelCoreUI\ServiceProvider" --tag=views
```

You can now edit them under `resources/views/vendor/coreui`.

Translations
------------

[](#translations)

At the moment, English and Dutch translations are available out of the box. Just specifiy the language in `config/app.php`. If you need to modify the texts or add other languages, you can publish the language files:

```
php artisan vendor:publish --provider="HzHboIct\LaravelCoreUI\ServiceProvider" --tag=translations

```

Now, you can edit translations or add languages in `resources/lang/vendor/coreui`.

Updating the package
--------------------

[](#updating-the-package)

To update the package, run the following command. Note that this **will** overwrite any changes you've made in the published asset files. Published views, config and translations need to be updated manually.

```
$ composer update hz-hbo-ict/laravel-core-ui
$ php artisan vendor:publish --provider="HzHboIct\LaravelCoreUI\ServiceProvider" --tag=assets --force
```

License
-------

[](#license)

This packaged is licensed under the MIT License.

Acknowledgements
----------------

[](#acknowledgements)

Heavily inspired by [Jeroen Noten](https://github.com/jeroennoten)'s [Laravel-AdminLTE](https://github.com/jeroennoten/Laravel-AdminLTE) package.

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~16 days

Recently: every ~97 days

Total

40

Last Release

2140d ago

Major Versions

v1.4.0 → v2.0.02019-02-27

v2.9.1 → v3.0.02019-09-09

v3.4.0 → v4.0.02020-10-05

PHP version history (3 changes)v1.0.0PHP &gt;=7.1.3

v3.0.0PHP ^7.2

v4.0.0PHP ^7.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/9716643?v=4)[Loek van der Linde](/maintainers/Lucky-Loek)[@Lucky-Loek](https://github.com/Lucky-Loek)

---

Top Contributors

[![Daniel-I-Am](https://avatars.githubusercontent.com/u/34800550?v=4)](https://github.com/Daniel-I-Am "Daniel-I-Am (14 commits)")[![dwaard](https://avatars.githubusercontent.com/u/6419619?v=4)](https://github.com/dwaard "dwaard (13 commits)")[![Albvadi](https://avatars.githubusercontent.com/u/6285255?v=4)](https://github.com/Albvadi "Albvadi (4 commits)")[![BackEndTea](https://avatars.githubusercontent.com/u/14289961?v=4)](https://github.com/BackEndTea "BackEndTea (4 commits)")[![rimmertzelle](https://avatars.githubusercontent.com/u/429192?v=4)](https://github.com/rimmertzelle "rimmertzelle (1 commits)")

---

Tags

hacktoberfest

### Embed Badge

![Health badge](/badges/hz-hbo-ict-laravel-core-ui/health.svg)

```
[![Health](https://phpackages.com/badges/hz-hbo-ict-laravel-core-ui/health.svg)](https://phpackages.com/packages/hz-hbo-ict-laravel-core-ui)
```

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.8k2.5k](/packages/unopim-unopim)[bagisto/bagisto

Bagisto Laravel E-Commerce

28.0k175.2k9](/packages/bagisto-bagisto)[duncanmcclean/statamic-cargo

Comprehensive e-commerce addon for Statamic. Build bespoke e-commerce sites without the complexity.

3622.8k](/packages/duncanmcclean-statamic-cargo)

PHPackages © 2026

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