takielias/tablar-starter-kit

The skeleton application for the Laravel Tablar Starter Kit.

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

Type:project

dev-main 2025-03-14 14:58 UTC

This package is auto-updated.

Last update: 2025-03-14 14:58:46 UTC


README

This guide will walk you through the process of installing Laravel with the Tablar Starter Kit, a modern admin panel template based on Tabler HTML Template .

Prerequisites

  • PHP 8.3 or higher
  • Composer
  • Node.js & NPM
  • Git

Installation Steps

1. Install the Laravel Installer (if not already installed)

composer global require laravel/installer

Make sure the Composer bin directory is in your system's PATH.

2. Create a New Laravel Project with Tablar Starter Kit

laravel new my-project --using=takielias/tablar-starter-kit

This command will:

  • Create a new Laravel application
  • Install the Tablar Starter Kit
  • Set up all necessary dependencies

3. Navigate to Your Project

cd demo-starter-kit

4. Configure Your Database

Edit the .env file and update the database connection details:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_database_username
DB_PASSWORD=your_database_password

5. Start the Development Server

composer run dev

Your application will be available at http://localhost:8000

Features of Tablar Starter Kit

  • Modern admin template based on Tabler
  • Responsive design
  • Dark mode support
  • Ready-to-use dashboard components
  • Authentication system pre-configured

Troubleshooting

If you encounter any issues during installation:

  1. Make sure your PHP version is compatible (8.3+)
  2. Ensure Composer is up to date: composer self-update
  3. Check Laravel installer version: laravel --version

Additional Resources

License

The Laravel framework is open-sourced software licensed under the MIT license.