aliqasemzadeh/quickpanel

QuickPanel is TALL stack based Laravel application.

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:project

pkg:composer/aliqasemzadeh/quickpanel

0.0.2 2025-08-23 12:33 UTC

This package is auto-updated.

Last update: 2025-10-14 11:12:03 UTC


README

QuickPanel is a modern admin panel starter built on the TALL stack (Tailwind CSS, Alpine.js, Laravel, Livewire). It ships with authentication, authorization, localization, beautiful datagrids, modals/toasts, and developer tooling to help you start building dashboards and back-office applications quickly.

View project screenshots in the screenshots folder.

Tech Stack

  • PHP ^8.2, Laravel ^12
  • Livewire ^3 (SPA-like interactions without heavy JS)
  • Tailwind CSS + Vite
  • Alpine.js
  • Spatie Laravel Permission ^6 (roles/permissions)
  • PowerGrid ^6 (tables, filters, export)
  • Livewire Modal (elegantly/livewire-modal)
  • Livewire Toaster (masmerise/livewire-toaster)
  • Localization: mcamara/laravel-localization, laravel-lang/common
  • Social login: laravel/socialite
  • Log management: opcodesio/log-viewer

Requirements

  • PHP 8.2+
  • Composer
  • Node.js 18+ (20+ recommended) and npm
  • A database (MySQL/MariaDB/PostgreSQL/SQLite). SQLite works out of the box in dev.
  • Redis (optional) for queues/caching

Getting Started

  1. Clone and install dependencies
  • git clone quickpanel
  • cd quickpanel
  • composer install
  • npm install
  1. Environment
  • cp .env.example .env (on Windows: copy .env.example .env)
  • Set DB connection in .env (or use SQLite by setting DB_CONNECTION=sqlite)
  • Set APP_NAME, APP_URL (for example http://localhost:8000), MAIL_ settings for email verification
  1. App key and database
  • php artisan key:generate
  • If using SQLite, ensure database/database.sqlite exists (create an empty file)
  • php artisan migrate
  • (Optional) php artisan db:seed if you add seeders for roles/users
  1. Run the app (two options)
  • Separate terminals:
    • php artisan serve
    • php artisan queue:listen --tries=1
    • npm run dev
  • Or one command using Composer script:
    • composer run dev This uses npx concurrently to run server, queue listener, and Vite.

Open http://localhost:8000 (or your APP_URL).

Laravel Setup

You can use laravel composer setup to install quickpanel.

Features at a Glance

  • Authentication with email verification (Livewire components under resources/views/livewire/auth)
  • User dashboard and settings (including password change)
  • Role/Permission integration via Spatie Permission
  • DataTables/Grids via PowerGrid (filters, export, actions)
  • Modals and toast notifications for great UX
  • Multi-language and locale-aware routes via Laravel Localization
  • Optional social authentication via Socialite
  • Log Viewer at /log-viewer (guard as needed)

Configuration Notes

  • Queues: The development script uses queue:listen. For production, use a supervisor with queue:work.
  • Localization:
    • mcamara/laravel-localization adds localized routes. Configure locales in config/laravellocalization.php.
    • laravel-lang/common provides language lines. Your custom lines are under lang//quickpanel.php
  • Permissions:
    • After defining roles/permissions, consider seeding them and calling php artisan permission:cache-reset when changing them.
  • Socialite: Add provider credentials to .env (e.g., GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_REDIRECT_URL) and wire up controllers/routes.
  • Log Viewer: opcodesio/log-viewer exposes a UI to browse logs. Protect the route in production.

Security & Contributions

Please open issues or PRs in this repository. For security concerns, contact the maintainer privately and avoid filing public issues with exploit details.

License

MIT License. See LICENSE file if present; otherwise assume MIT per composer.json.