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
Requires
- php: ^8.2
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
- takielias/tablar: ^12
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.2
- laravel/pint: ^1.13
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^11.5.3
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:
- Make sure your PHP version is compatible (8.3+)
- Ensure Composer is up to date:
composer self-update
- Check Laravel installer version:
laravel --version
Additional Resources
License
The Laravel framework is open-sourced software licensed under the MIT license.