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 .
- PHP 8.3 or higher
- Composer
- Node.js & NPM
- Git
composer global require laravel/installer
Make sure the Composer bin directory is in your system's PATH.
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
cd demo-starter-kit
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
composer run dev
Your application will be available at http://localhost:8000
- Modern admin template based on Tabler
- Responsive design
- Dark mode support
- Ready-to-use dashboard components
- Authentication system pre-configured
If you encounter any issues during installation:
- Make sure your PHP version is compatible (8.3+)
- Ensure Composer is up to date:
composer self-update
- Check Laravel installer version:
laravel --version
The Laravel framework is open-sourced software licensed under the MIT license.