PHPackages                             michaelmano/laramin - 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. [Admin Panels](/categories/admin)
4. /
5. michaelmano/laramin

ActiveLibrary[Admin Panels](/categories/admin)

michaelmano/laramin
===================

Admin styles and scripts

0.3.1(8y ago)346MITCSS

Since Nov 5Pushed 8y ago1 watchersCompare

[ Source](https://github.com/michaelmano/laramin)[ Packagist](https://packagist.org/packages/michaelmano/laramin)[ RSS](/packages/michaelmano-laramin/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (7)Used By (0)

Laramin
=======

[](#laramin)

Laramin is a dashboard template designed with material in mind. I created Laramin to get your laravel project up and running without spending to much time worrying about designing an admin panel and logic to handle related assets like tag inputs.

**Laramin does not handle any backend logic.**

Table of Contents
-----------------

[](#table-of-contents)

- [Installing](#installing)\_ [Routes](#routes)\_ [Controllers](#controllers)\_ [Views](#views)\_ [Login Form](#login-form)
- [Config](#config)\_ [Menu](#menu)\_ [Project Manager](#project-manager)
- [Elements](#elements)\_ [Default Blade](#default-blade)\_ [Grid System](#grid-system)\_ [Kitchen Sink](#kitchen-sink)\_ [Tags](#tags)\_ [Cards](#cards)\_ [Forms](#forms) \* [Utility Helpers](#utility-helpers)
- [Vue Components](#vue-components)\_ [Modals](#modals)\_ [Image Cropper](#image-cropper)\_ [Flash Messages](#flash-messages)\_ [Loading Overlay](#loading-overlay)\_ [Tabs](#tabs)\_ [Tags Input](#tags-input) \* [Tooltips](#tooltips)
- [Laravel Components](#laravel-components) \* [Delete Item](#delete-item)
- [Vanilla JavaScript](#vanilla-javascript) \* [Sortable Items](#sortable-items)

Installing
----------

[](#installing)

Once you have a Laravel project up and running you can install laramin with composer `composer require michaelmano/laramin` and then adding it to your service providers under `config/app.php`

`MichaelMano\Laramin\LaraminServiceProvider::class,`

and then publish the assets with

`php artisan vendor:publish --provider="MichaelMano\Laramin\LaraminServiceProvider"`

I highly suggest not editing the files under `public/michaelmano/laramin` as Laramin is still in beta and there will be many updates.

### Routes

[](#routes)

As Laramin is an admin panel I will start with `php artisan make:auth` and then edit my route service provider `app/Providers/RouteServiceProvider.php` and adding the below inside of mapWebRoutes.

```
protected function mapWebRoutes()
{
 Route::middleware('web')
   ->namespace($this->namespace)
   ->group(base_path('routes/web.php'));

 Route::middleware('web')
   ->namespace($this->namespace)
   ->group(base_path('routes/dashboard.php'));
}
```

and then creating a file called dashboard.php inside of the routes folder and here is where I will create all of my dashboard routes.

```
