PHPackages                             armandsar/laravel-quick-view - 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. [Templating &amp; Views](/categories/templating)
4. /
5. armandsar/laravel-quick-view

ActiveLibrary[Templating &amp; Views](/categories/templating)

armandsar/laravel-quick-view
============================

Quickly render view from controller without typing file names

1.0.1(8y ago)222714MITPHPPHP &gt;=7.0.0

Since Dec 27Pushed 8y ago1 watchersCompare

[ Source](https://github.com/armandsar/laravel-quick-view)[ Packagist](https://packagist.org/packages/armandsar/laravel-quick-view)[ Docs](https://github.com/armandsar/laravel-quick-view)[ RSS](/packages/armandsar-laravel-quick-view/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (4)Dependencies (4)Versions (5)Used By (0)

Opinionated quick return for views in Laravel 5
===============================================

[](#opinionated-quick-return-for-views-in-laravel-5)

Are you tired of typing out view name for your controllers? Then this package is for you!

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/76461681f71d249602fcab5c37c12187392974d49dca275ea0ca20ff52e7fe6a/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f61726d616e647361722f6c61726176656c2d717569636b2d766965772f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/armandsar/laravel-quick-view)[![Total Downloads](https://camo.githubusercontent.com/4f388828853e48001248e3b6fb373d44faf15333d6d0b03d6bc95f0c5d07a86e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f61726d616e647361722f6c61726176656c2d717569636b2d766965772e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/armandsar/laravel-quick-view)

Install
-------

[](#install)

Via Composer

```
$ composer require armandsar/laravel-quick-view
```

Usage
-----

[](#usage)

Namespace and controller name as folders and method name as file name.

Given that we have a Admin/UsersController

```
public function create()
{
    return quick();
}
```

would assume a view at **admin/users/create.blade.php**

Or if you prefer not to use a helper, there is also a trait:

```
class UsersController
{
    use Armandsar\QuickView\Quick;

    public function show($id)
    {
        $user = User::findOrFail($id)
        return $this->quick(['user' => $user]);
    }
}
```

would assume a view at **admin/users/show.blade.php**

Testing
-------

[](#testing)

```
$ phpunit
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 85.7% 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.

###  Release Activity

Cadence

Every ~38 days

Total

4

Last Release

2942d ago

Major Versions

0.2 → 1.02018-02-28

### Community

Maintainers

![](https://www.gravatar.com/avatar/1d1584cae4715829f276a059ff3e144d371766deb32a63e3693a4d3c19430521?d=identicon)[armandsar](/maintainers/armandsar)

---

Top Contributors

[![armandsar](https://avatars.githubusercontent.com/u/3834314?v=4)](https://github.com/armandsar "armandsar (6 commits)")[![wotta](https://avatars.githubusercontent.com/u/13332240?v=4)](https://github.com/wotta "wotta (1 commits)")

---

Tags

laravelview

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/armandsar-laravel-quick-view/health.svg)

```
[![Health](https://phpackages.com/badges/armandsar-laravel-quick-view/health.svg)](https://phpackages.com/packages/armandsar-laravel-quick-view)
```

###  Alternatives

[itstructure/laravel-grid-view

Grid view for laravel framework

2546.6k2](/packages/itstructure-laravel-grid-view)[delatbabel/viewpages

Support rendering/view of Laravel pages and templates from a database.

121.4k](/packages/delatbabel-viewpages)

PHPackages © 2026

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