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(8y ago)022PHP

Since Jun 12Pushed 8y ago1 watchersCompare

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

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 32% 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

3254d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d5611d43eb36762d01afbc94a5eadbb6fd8cd287f849eeccea64ba911138f35c?d=identicon)[jacksunny2020](/maintainers/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

[cagilo/cagilo

A set of open-source Blade components for the Laravel Framework

172996.5k](/packages/cagilo-cagilo)[orchid/blade-icons

An easy way inline SVG images in your Blade templates.

223.4M9](/packages/orchid-blade-icons)[wireui/heroicons

The Tailwind Heroicons for laravel blade by WireUI

43390.8k5](/packages/wireui-heroicons)[stillat/antlers-components

2656.0k1](/packages/stillat-antlers-components)[itstructure/laravel-grid-view

Grid view for laravel framework

2546.6k2](/packages/itstructure-laravel-grid-view)[tomatophp/tomato-admin

Tomato Admin Dashboard Build With FilamentPHP Theme for Laravel Splade

578.6k60](/packages/tomatophp-tomato-admin)

PHPackages © 2026

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