Project Overview
Studio v4.5 is a Bootstrap frontend template designed for creative studios, photography, or design agencies. It provides a complete Laravel 11.9 version and a pure HTML version, with both full and starter variants, enabling quick setup of professional portfolio showcase sites.
Tech Stack
- Backend Framework: Laravel 11.9, PHP 8.2+
- Frontend Framework: Bootstrap
- Database: MySQL / SQLite (ready to use out of the box)
- Cache/Queue: Redis, SESSION, Cache (file)
- Frontend Build: npm, Webpack Mix
- Real-time Communication: Pusher (optional)
- Mail: SMTP / Mailhog
Project Structure
studio_v4.5/
├── template_laravel/ # Full Laravel project
│ ├── app/
│ ├── resources/
│ ├── routes/
│ ├── public/
│ ├── composer.json
│ ├── package.json
│ └── .env.example
├── template_laravel_startup/ # Laravel starter project (same structure)
├── template_html/ # Pure HTML + Bootstrap
└── template_html_startup/ # HTML starter version
Key File Descriptions
template_laravel/composer.json— Laravel dependencies and project metadatatemplate_laravel/.env.example— Environment variable template (database, Redis, mail, etc.)template_laravel/package.json— npm dependencies and frontend build scriptstemplate_laravel/webpack.mix.js— Laravel Mix frontend asset bundling configurationtemplate_laravel/artisan— Laravel command-line entry pointtemplate_laravel/routes/— Route definitions directory
Quick Start
# Clone the full Laravel version
cd template_laravel
# Install dependencies
composer install
npm install
# Copy environment configuration and generate key
cp .env.example .env
php artisan key:generate
# Initialize database (SQLite default)
touch database/database.sqlite
php artisan migrate
# Start development server
php artisan serve
npm run dev
Usage Recommendations
This template is suitable for creative personal brands or studio websites. The Laravel version allows direct development of business pages based on routes, while the HTML version is ideal for integrating with other backend systems. Before development, configure the actual database and mail service according to .env.example.
