PHPackages                             atnic/laravel-inspinia - 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. [Templating &amp; Views](/categories/templating)
4. /
5. atnic/laravel-inspinia

ActivePackage[Templating &amp; Views](/categories/templating)

atnic/laravel-inspinia
======================

Laravel Package for integrating Inspinia template and this package is Laravel Mix friendly.

v0.4.2(8y ago)164.1k13[2 issues](https://github.com/Atnic/laravel-inspinia/issues)[24 PRs](https://github.com/Atnic/laravel-inspinia/pulls)1MITHTMLPHP &gt;=5.6.4

Since Dec 23Pushed 3y ago8 watchersCompare

[ Source](https://github.com/Atnic/laravel-inspinia)[ Packagist](https://packagist.org/packages/atnic/laravel-inspinia)[ RSS](/packages/atnic-laravel-inspinia/feed)WikiDiscussions develop Synced today

READMEChangelog (4)Dependencies (5)Versions (38)Used By (1)

[Origin Project](https://wrapbootstrap.com/theme/inspinia-responsive-admin-theme-WB0R5L90S)

This is only a demo!

If you're only going to study these source code, be free to view them.

If you want to deploy or use it (especially on commercial), Please purchase $36 for it on {wrap}Bootstrap.

All rights are reserved by the [owner](https://wrapbootstrap.com/user/WebAppLayers) of this project.

Laravel Inspinia
================

[](#laravel-inspinia)

Laravel Package for integrating Inspinia template and this package is Laravel Mix friendly. Currently this package can be integrated easily only on fresh installation.

Installation
============

[](#installation)

```
composer require atnic/laravel-inspinia
```

If you are using Laravel 5.5 above skip this step, but if aren't then add this line on `config/app.php`, on `providers`

```
'providers' => [
  ...
  Atnic\Inspinia\Providers\AppServiceProvider::class,
  ...
]
```

And then run,

```
php artisan make:inspinia
```

Let's see what we've install. First, make sure that you already ran `php artisan migrate` command, then do

```
php artisan serve
```

Viola! You've running a Laravel site using Inspinia.

For more information on command

```
php artisan make:inspinia --help
```

Usage
=====

[](#usage)

This package provides view for auth and app. Take a look at `resources/views/layouts/app.blade.php`.

In this file you can extends global section like user name, avatar, breadcrumbs, and menu.

To extends menu add this in `app.blade.php`

```
@section('sidebar-menu')

     Home

@endsection
```

To extends breadcrumbs add this

```
@section('breadcrumbs')
@include('inspinia::layouts.main-panel.breadcrumbs', [
  'breadcrumbs' => [
    (object) [ 'title' => 'Home', 'url' => route('home') ]
  ]
])
@endsection
```

This package give you free of choice to use any Laravel Package for Menu and Breadcrumb. We recommend [spatie/laravel-menu](https://github.com/spatie/laravel-menu) or [lavary/laravel-menu](https://github.com/lavary/laravel-menu), and [davejamesmiller/laravel-breadcrumbs](https://github.com/davejamesmiller/laravel-breadcrumbs).

Any new created page should extends this view.

```
@extends('layouts.app')

// Your blade here
```

Configuration and Views Customization
=====================================

[](#configuration-and-views-customization)

Config
------

[](#config)

To publish this package config to your app config run

```
php artisan vendor:publish --provider="Atnic\Inspinia\Providers\AppServiceProvider" --tag="config"
```

Views
-----

[](#views)

To publish this package views so you can customize on your own run

```
php artisan vendor:publish --provider="Atnic\Inspinia\Providers\AppServiceProvider" --tag="views"
```

Next Step
=========

[](#next-step)

First of all, you should understand how to use [Laravel Mix](https://laravel.com/docs/mix).

Inspinia need some package on npm. First you need to run

```
npm install
```

Install Inspinia needed package from npm

```
npm install --save-dev animate.css bootstrap-sass bootstrap-datepicker clockpicker font-awesome icheck jquery-slimscroll metismenu moment pace-js select2 select2-bootstrap-theme toastr
```

Run Laravel Mix command

```
npm run development
```

or use `production` minimize output

```
npm run production
```

Then have a good look on these files

- `webpack.mix.js`
- `resources/assets/js/inspinia.js`
- `resources/assets/js/auth.js`
- `resources/assets/sass/inspinia.scss`
- `resources/assets/sass/auth.scss`

Happy experimenting!

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 76.5% 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 ~11 days

Recently: every ~22 days

Total

13

Last Release

2976d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/00091fdeece134a63bf9327d2e103de05485f4b2c388a8c06265422d99f92342?d=identicon)[GusZandy](/maintainers/GusZandy)

---

Top Contributors

[![frdteknikelektro](https://avatars.githubusercontent.com/u/14815819?v=4)](https://github.com/frdteknikelektro "frdteknikelektro (52 commits)")[![GusZandy](https://avatars.githubusercontent.com/u/29138346?v=4)](https://github.com/GusZandy "GusZandy (14 commits)")[![mortenscheel](https://avatars.githubusercontent.com/u/6514342?v=4)](https://github.com/mortenscheel "mortenscheel (2 commits)")

---

Tags

composerlaravelpackageinspinia

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/atnic-laravel-inspinia/health.svg)

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

###  Alternatives

[api-platform/laravel

API Platform support for Laravel

58171.8k14](/packages/api-platform-laravel)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21318.6k3](/packages/ecotone-laravel)

PHPackages © 2026

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