Download the PHP package imrandevbd/laravel-blueprint-studio without Composer

On this page you can find all versions of the php package imrandevbd/laravel-blueprint-studio. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-blueprint-studio

Laravel Blueprint Studio

Visual scaffolding for modern Laravel apps.

Stop writing the same CRUD boilerplate by hand. Laravel Blueprint Studio gives you a premium visual UI to design models, fields, migrations, controllers, form requests, Blade views, and routes — then generates production-ready code in one click.

Built with Tailwind CSS + Alpine.js (CDN) · Compatible with Laravel 10 / 11 / 12 / 13


Why Blueprint Studio?

Backend CRUD work is repetitive: model → migration → fillable → validation → controller → views → routes → folder structure for admin/user areas. This package turns that into a visible, clickable workflow:

Manual backend task With Blueprint Studio
Create Eloquent model Type the name visually
Write migration columns Add fields in a table UI (id + timestamps locked by default)
Sync $fillable / $casts Auto-updated from your fields
Build FormRequest rules Generated from field types
Write resource controller One click (User / Admin / Guest folders)
Blade index/create/edit/show Auto from migration fields + Tailwind forms
Register routes Auto-appended to routes/web.php
Keep admin vs user structure Select base → folders + URLs match
Track what you generated Full visual history

Features

Visual builder

Selective generation (all ON by default)

Uncheck anything you don’t want — skipped at generate time:

🔐 Smart Authentication System (Admin, User & Multi-Auth)

Dedicated visual tab to scaffold complete, production-ready auth ecosystems with smart existence detection:

Page Route Category Included Sections & Features
Home / Landing / Marketing Hero banner, stats counter, feature grid, testimonials, CTA banner, FAQ
About Us /about Company Mission, vision, company narrative, leadership preview, milestones timeline
Contact Us /contact Marketing Interactive contact form, email/phone cards, office address, support cards
Services /services Marketing Service cards with modern icons, 3-step delivery process, tech stack badges
Pricing Plans /pricing SaaS Starter/Pro/Enterprise tiers, monthly/annual toggle, comparison matrix, FAQ
FAQ Center /faq Support Animated accordion Q&A list, category filters, live support card
Features /features Product Deep feature highlights, tabbed interactive preview, performance benchmarks
Testimonials /testimonials Social Proof Customer quote cards, verified 5-star badges, client avatar list, metrics
Our Team /team Company Team profile cards with role badges, bios, and social channel links
Careers & Hiring /careers Company Company perks grid, filterable open job listings with "Apply Now" buttons
Blog & News /blog Content Hero featured story, category filter pills, article cards with read time tags
Portfolio /portfolio Agency Filterable case study showcase, before/after metrics, tech stacks used
Privacy Policy /privacy Legal GDPR/CCPA compliant legal layout with sidebar table of contents
Terms of Service /terms Legal Structured terms of service document layout with chapter navigation
Coming Soon /coming-soon Utility Interactive countdown timer, newsletter email subscription form, social links

🔗 Visual Eloquent Relationships & Pivot Tables

⚡ REST API Generator & Postman Export

🌱 Smart Model Factories & Mock Seeders (Faker)

🧪 Automated Feature Test Generator (Pest PHP & PHPUnit)

💾 Web Artisan Console & Database Explorer

💻 Artisan CLI Commands

User / Admin / Guest bases

Pick a base and Studio creates the matching folders + routes:

Base Controller Views Requests URL
User app/Http/Controllers/User/ resources/views/user/ app/Http/Requests/User/ /user/{resource}
Admin app/Http/Controllers/Admin/ resources/views/admin/ app/Http/Requests/Admin/ /admin/{resource}
Guest app/Http/Controllers/Guest/ resources/views/guest/ app/Http/Requests/Guest/ /guest/{resource}

Smart defaults

Generated stack (example: Product + Admin)


Requirements


Installation

Path package (local development)

In your Laravel app composer.json:

From Packagist / GitHub

Or from GitHub directly:


Quick start

  1. Open /blueprint-studio
  2. Add model(s) on the left (e.g. Product, Order)
  3. Edit fields on the right
  4. Choose User / Admin / Guest
  5. Keep (or uncheck) Model · Migration · Controller · Route · View
  6. Click Generate this model or Generate all
  7. Run php artisan migrate

How the generate flow works

When you submit (with components selected):

Unselected components are skipped.


Configuration

Publish config:

Key options in config/blueprint-studio.php:

Key Purpose
route_prefix Studio URL (default blueprint-studio)
middleware Add auth in shared environments
allowed_environments Where the UI is allowed
controller_bases User / Admin / Guest paths & prefixes
auto_routes Auto-write routes/web.php
field_types Visual field catalog + validation
layout.path Blade layout for generated views

Environment


Security note

Blueprint Studio writes PHP and Blade into your app. Use it behind auth, keep it on local/staging, and leave it disabled in production unless you intentionally force-enable it with strong middleware.


Package structure


License

MIT © Imran Dev BD


Developed by Imran Dev BD

If you have any issue, need help, or want custom Laravel work — contact me anytime.

🌐 Portfolio imrandev.bd
💼 LinkedIn linkedin.com/in/imranbru99
🐙 GitHub github.com/imranbru99
🐦 X / Twitter @imrandev_bd
📺 YouTube @ImranDevBD
📸 Instagram @imranbru99
📘 Facebook ExpertImranDev
🎵 TikTok @imrandev_bd
🧵 Threads @imranbru99
📌 Pinterest @imrandev_bd
💬 WhatsApp +880 1576-918420
📧 Email [email protected]
🔗 All Links linktr.ee/ExpertImranDev

Any issue? Contact me please → imrandev.bd/contact


All versions of laravel-blueprint-studio with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/support Version ^10.0|^11.0|^12.0|^13.0
illuminate/routing Version ^10.0|^11.0|^12.0|^13.0
illuminate/view Version ^10.0|^11.0|^12.0|^13.0
illuminate/database Version ^10.0|^11.0|^12.0|^13.0
illuminate/http Version ^10.0|^11.0|^12.0|^13.0
illuminate/filesystem Version ^10.0|^11.0|^12.0|^13.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package imrandevbd/laravel-blueprint-studio contains the following files

Loading the files please wait ...