PHPackages                             mevlutcelik/laravel-explorer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. mevlutcelik/laravel-explorer

ActiveLibrary

mevlutcelik/laravel-explorer
============================

An advanced API route explorer and testing workspace for Laravel.

00Blade

Since Mar 29Pushed 1mo agoCompare

[ Source](https://github.com/mevlutcelik/laravel-explorer)[ Packagist](https://packagist.org/packages/mevlutcelik/laravel-explorer)[ RSS](/packages/mevlutcelik-laravel-explorer/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)DependenciesVersions (1)Used By (0)

 [![Laravel Explorer](https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg)](https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg)

Laravel Explorer
================

[](#laravel-explorer)

 **An advanced, beautiful, and interactive API route explorer and testing workspace for Laravel 12+.**
 Built with Tailwind CSS, it provides a Postman/Insomnia-like experience directly within your Laravel application.

 [![Latest Version on Packagist](https://camo.githubusercontent.com/e2585064af00531bb3dc917f9190ee2741c8f72401a62d8fecab026599cbef7a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d65766c757463656c696b2f6c61726176656c2d6578706c6f7265722e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/mevlutcelik/laravel-explorer) [![Total Downloads](https://camo.githubusercontent.com/f3aa2bd32c8e0514684e1bdbd137bf72ba835b25b66c51f518fc170f424922d9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d65766c757463656c696b2f6c61726176656c2d6578706c6f7265722e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/mevlutcelik/laravel-explorer) [![PHP Version](https://camo.githubusercontent.com/c449d410f8565a6b92f839f10ca692959fe2788a09595e6545da5bc8adf99cb0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6d65766c757463656c696b2f6c61726176656c2d6578706c6f7265722e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/mevlutcelik/laravel-explorer) [![License](https://camo.githubusercontent.com/ae7e61cbe2a3a142b540d0750a5490a86b9fff7d632d7898a634e565b9943fb0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6d65766c757463656c696b2f6c61726176656c2d6578706c6f7265722e7376673f7374796c653d666f722d7468652d6261646765)](https://github.com/mevlutcelik/laravel-explorer/blob/main/LICENSE)

---

📸 Preview
---------

[](#-preview)

 [![](https://github.com/mevlutcelik/laravel-explorer/raw/main/ss.png)](https://github.com/mevlutcelik/laravel-explorer/blob/main/ss.png)✨ Key Features
--------------

[](#-key-features)

- **Interactive API Testing:** Send `GET`, `POST`, `PUT`, `PATCH`, and `DELETE` requests directly from your browser.
- **Smart Parameter Detection:** Automatically detects URL Path parameters and analyzes your Controller/Closure code via PHP Reflection to find expected Body/Query parameters.
- **Advanced Authentication Handling:** Seamlessly manage `auth:sanctum` or JWT tokens. Tokens are synced across the UI, persist in `localStorage`, and feature a secure visibility toggle.
- **Built-in REPL Console:** A fully functional JavaScript console to interact with HTML responses, complete with command history (Up/Down arrows) and log interception.
- **Code Snippet Generator:** Instantly generates ready-to-use `cURL` and `Fetch API` scripts for your endpoints.
- **Visual &amp; Raw Output:** Toggle between a beautifully formatted, syntax-highlighted JSON tree, Raw output, or an interactive HTML iFrame preview.
- **Native Dark/Light Mode:** Automatically matches your system preference or toggles manually without any flickering (No FOUC).
- **Secure by Default:** Runs **only in the `local` environment** out of the box to prevent route and data leaks in production.

📦 Requirements
--------------

[](#-requirements)

- **PHP:** `^8.2`
- **Laravel:** `^12.0`

🚀 Installation
--------------

[](#-installation)

You can install the package via composer. Since this is a developer tool, it is highly recommended to install it as a `dev` dependency:

```
composer require mevlutcelik/laravel-explorer --dev
```

🛠️ Usage
--------

[](#️-usage)

Once installed, simply start your Laravel development server:

```
php artisan serve
```

Then, visit the explorer in your browser: **`http://localhost:8000/explorer`**

⚙️ Configuration (Optional)
---------------------------

[](#️-configuration-optional)

Laravel Explorer works perfectly out of the box. However, if you want to change the default route path, environments, or apply custom middleware, you can publish the configuration file:

```
php artisan vendor:publish --tag="laravel-explorer-config"
```

This will create a `config/laravel-explorer.php` file in your app:

```
return [
    /*
     * The path where the explorer will be accessible.
     */
    'path' => 'explorer',

    /*
     * The environments where the explorer is allowed to run.
     * For security reasons, this defaults to 'local' only.
     */
    'environments' => ['local'],

    /*
     * Middleware applied to the explorer route.
     */
    'middleware' => ['web'],
];
```

*Note: If you modify the config file, remember to run `php artisan config:clear`.*

🔒 Security Vulnerabilities
--------------------------

[](#-security-vulnerabilities)

If you discover a security vulnerability within Laravel Explorer, please send an e-mail to Mevlüt Çelik via . All security vulnerabilities will be promptly addressed.

👨‍💻 Credits
-----------

[](#‍-credits)

- [Mevlüt Çelik](https://www.mevlutcelik.com)
- [All Contributors](https://github.com/mevlutcelik/laravel-explorer/graphs/contributors)

📄 License
---------

[](#-license)

The MIT License (MIT). Please see [License File](https://github.com/mevlutcelik/laravel-explorer/blob/main/LICENSE) for more information.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance60

Regular maintenance activity

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/e429a49e1fc27279c4ee68ce945ffb71ff54193d8098b9eee2adea9c6cdfb0d7?d=identicon)[mevlutcelik](/maintainers/mevlutcelik)

---

Top Contributors

[![mevlutcelik](https://avatars.githubusercontent.com/u/98541209?v=4)](https://github.com/mevlutcelik "mevlutcelik (10 commits)")

---

Tags

laravellaravel-explorermevlutcelik

### Embed Badge

![Health badge](/badges/mevlutcelik-laravel-explorer/health.svg)

```
[![Health](https://phpackages.com/badges/mevlutcelik-laravel-explorer/health.svg)](https://phpackages.com/packages/mevlutcelik-laravel-explorer)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
