PHPackages                             jacksunny/viewfinder - 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. jacksunny/viewfinder

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

jacksunny/viewfinder
====================

extended plugin on view file finder from view name for laravel framework

v0.7(9y ago)022PHP

Since Jun 12Pushed 9y ago1 watchersCompare

[ Source](https://github.com/jacksunny2020/viewfinder)[ Packagist](https://packagist.org/packages/jacksunny/viewfinder)[ RSS](/packages/jacksunny-viewfinder/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

viewfinder
==========

[](#viewfinder)

extended plugin on view file finder from view name for laravel framework

How to install and configurate package
======================================

[](#how-to-install-and-configurate-package)

1. install the laravel package composer require "jacksunny/viewfinder":"dev-master"

please check exist line "minimum-stability": "dev" in composer.json if failed

2. append new service provider file line in the section providers of file app.config after appended,it should looks like

 ```
   'providers' => [
        Illuminate\Auth\AuthServiceProvider::class,
        ......
        Jacksunny\ViewFinder\ExtendedViewServiceProvider::class,  //only default view finder class
        App\Providers\MyExtendedViewServiceProvider::class,       //custom my view finder class
    ],

```

3. add test code to check if it works

 ```
    Route::get("/{entity}/{type}",function($entity,$type){
      return view("$entity.$type");
  });

```

4. if wanna custom your ViewFinder you may create a class extends from AbsExtendedFileViewFinder,and a custom service provider extends from ExtendedViewServiceProvider ```
    class MyExtendedFileViewFinder extends AbsExtendedFileViewFinder {

     public function findNeededFilesInPath($name, $path, $user) {
       ...
     }

     class MyExtendedViewServiceProvider extends ExtendedViewServiceProvider {
     public function registerViewFinder() {
         $this->app->bind('view.finder', function ($app) {
             return new MyExtendedFileViewFinder($app['files'], $app['config']['view.paths']);
         });
     }

    ```
5. please notify me if you got any problem or error on it,thank you!

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3305d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5234046?v=4)[jacksunny2020](/maintainers/jacksunny2020)[@jacksunny2020](https://github.com/jacksunny2020)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/jacksunny-viewfinder/health.svg)

```
[![Health](https://phpackages.com/badges/jacksunny-viewfinder/health.svg)](https://phpackages.com/packages/jacksunny-viewfinder)
```

###  Alternatives

[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135212.4k7](/packages/statamic-rad-pack-runway)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21313.7k3](/packages/ecotone-laravel)[ycs77/inertia-laravel-ssr-head

Simple SSR Head for Inertia Laravel

3413.0k](/packages/ycs77-inertia-laravel-ssr-head)

PHPackages © 2026

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