PHPackages                             taffovelikoff/hotcoffee - 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. taffovelikoff/hotcoffee

AbandonedLibrary[Admin Panels](/categories/admin)

taffovelikoff/hotcoffee
=======================

A simple laravel admin panel to kick start your new web app.

v2.0.1(2mo ago)1103MITPHPPHP ^8.3CI failing

Since Apr 8Pushed 2mo ago2 watchersCompare

[ Source](https://github.com/TaffoVelikoff/hotCoffee)[ Packagist](https://packagist.org/packages/taffovelikoff/hotcoffee)[ Docs](https://github.com/TaffoVelikoff/hotcoffee)[ RSS](/packages/taffovelikoff-hotcoffee/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (14)Versions (14)Used By (0)

hotCoffee Admin Panel
=====================

[](#hotcoffee-admin-panel)

☕ Laravel 7 admin panel package to kick start your new web app.

🛠️ Created by [Taffo Velikoff](https://taffovelikoff.com) (TAVVO Ltd.), Bulgaria.

[![alt text](https://camo.githubusercontent.com/9b6dde0ae3c449c7547465a8b8979bb4b0d01b043b5bfcf21e6646afd840d9a9/687474703a2f2f6465762e746166666f76656c696b6f66662e636f6d2f696d616765732f686f74636f666665652f686f74636f666665655f696e74726f2e706e67 "hotCoffee")](https://camo.githubusercontent.com/9b6dde0ae3c449c7547465a8b8979bb4b0d01b043b5bfcf21e6646afd840d9a9/687474703a2f2f6465762e746166666f76656c696b6f66662e636f6d2f696d616765732f686f74636f666665652f686f74636f666665655f696e74726f2e706e67)

[Computer psd created by rawpixel.com - www.freepik.com](https://www.freepik.com/free-photos-vectors/computer)

Contents
--------

[](#contents)

[🤔 What is hotCoffee?](#what-is-hotcoffee)

[💻 Requirements](#requirements)

[⚙️ Installation](#installation)

[📚 Documentation](#documentation)

[📜 TO DO LIST](#to-do)

What is hotCoffee?
------------------

[](#what-is-hotcoffee)

**HotCoffee** is a free Laravel admin interface package. It includes a few "modules" for:

- Articles/Blog Posts
- Info Pages
- Admin Search
- XLS/CSV Export
- Menu Builder
- File Manager
- User Roles
- Users
- Thumbnail Viewer
- Global Website Settings
- Custom Search Engine Friendly URLs (SEF URLs) for models
- and more!

**HotCoffee** aims to help you with the generic tasks of creating an admin panel and lets you focus on building the app. The admin panel is easily extendable and you can edit most of it's appearance from a single config file.

This package is **not a CMS** (or blogging system), but it could be used in building one.

Screenshots
-----------

[](#screenshots)

#### User Profile

[](#user-profile)

[![alt text](https://camo.githubusercontent.com/6ca49da0d522aa9e113de19788242263e485e28e48af902049ca811e991f4d0d/687474703a2f2f6465762e746166666f76656c696b6f66662e636f6d2f696d616765732f686f74636f666665652f70726f66696c652e706e67 "hotCoffee User Profile")](https://camo.githubusercontent.com/6ca49da0d522aa9e113de19788242263e485e28e48af902049ca811e991f4d0d/687474703a2f2f6465762e746166666f76656c696b6f66662e636f6d2f696d616765732f686f74636f666665652f70726f66696c652e706e67)

#### Page Editor

[](#page-editor)

[![alt text](https://camo.githubusercontent.com/5f5377af990742ad1ead385ecf3fc993ce62b9f4f5de759d9809392f388e190d/687474703a2f2f6465762e746166666f76656c696b6f66662e636f6d2f696d616765732f686f74636f666665652f706167652e706e67 "hotCoffee Page Editor")](https://camo.githubusercontent.com/5f5377af990742ad1ead385ecf3fc993ce62b9f4f5de759d9809392f388e190d/687474703a2f2f6465762e746166666f76656c696b6f66662e636f6d2f696d616765732f686f74636f666665652f706167652e706e67)

#### Menu Editor

[](#menu-editor)

[![alt text](https://camo.githubusercontent.com/0e3c4c6123038a68a6017b860358a1ab07e7115dacadabc37540cd43d0c15a32/687474703a2f2f6465762e746166666f76656c696b6f66662e636f6d2f696d616765732f686f74636f666665652f6d656e752e706e67 "hotCoffee Menu Editor")](https://camo.githubusercontent.com/0e3c4c6123038a68a6017b860358a1ab07e7115dacadabc37540cd43d0c15a32/687474703a2f2f6465762e746166666f76656c696b6f66662e636f6d2f696d616765732f686f74636f666665652f6d656e752e706e67)

Requirements
------------

[](#requirements)

Before installing hotCoffee make sure you have installed Laravel 7.0 or above and PHP 7.2 or newer.

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

[](#installation)

#### 🟢 STEP 1: Required the package

[](#-step-1-required-the-package)

The installation process is really simple. Create a new Laravel application and include the package with the following command:

```
composer require taffovelikoff/hotcoffee

```

#### 🟢 STEP 2: Setup the database

[](#-step-2-setup-the-database)

Next make sure to create a new database and add your database credentials to the .env file. Also add your application URL in the APP\_URL variable:

```
APP_URL=http://127.0.0.1:8000/
DB_HOST=localhost
DB_DATABASE=hotcoffee
DB_USERNAME=root
DB_PASSWORD=mypassword

```

#### 🟢 STEP 3: Run the installation script

[](#-step-3-run-the-installation-script)

After that you can run an artisan command to finilize the installation.

```
php artisan hotcoffee:install

```

The script will ask you if you want to also install the example logic (this includes some example controllers, routes, views and dummy pages for the front-end of your app). Type "yes" or "no" and hit enter to continue.

#### 🟢 STEP 4: Extend the User model

[](#-step-4-extend-the-user-model)

Edit your User model (usually app/User.php) and make the class extend \\TaffoVelikoff\\HotCoffee\\User instead of Authenticatable.

```
