PHPackages                             renedekat/laravel-view-finder-creater - 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. renedekat/laravel-view-finder-creater

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

renedekat/laravel-view-finder-creater
=====================================

A Laravel view finder replacement that creates missing views with a template layout.

v2.0.2(9y ago)044MITPHPPHP ~5.6|~7.0

Since Jan 17Pushed 9y ago2 watchersCompare

[ Source](https://github.com/renedekat/laravel-view-finder-creater)[ Packagist](https://packagist.org/packages/renedekat/laravel-view-finder-creater)[ Docs](https://github.com/renedekat/laravel-view-finder-creater)[ RSS](/packages/renedekat-laravel-view-finder-creater/feed)WikiDiscussions master Synced 2mo ago

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

[![Latest Stable Version](https://camo.githubusercontent.com/e336abd08379546039908b18f33b8a162e5b0a7316acdacc21497a063cdd2cc0/68747470733a2f2f706f7365722e707567782e6f72672f72656e6564656b61742f6c61726176656c2d766965772d66696e6465722d637265617465722f762f737461626c65)](https://packagist.org/packages/renedekat/laravel-view-finder-creater)[![Total Downloads](https://camo.githubusercontent.com/5b608065cf8e4a859b1185105ee7234a02d06efe12dc9181b7f5729618b70de1/68747470733a2f2f706f7365722e707567782e6f72672f72656e6564656b61742f6c61726176656c2d766965772d66696e6465722d637265617465722f646f776e6c6f616473)](https://packagist.org/packages/renedekat/laravel-view-finder-creater)[![Latest Unstable Version](https://camo.githubusercontent.com/c45223f9bdaaee7849ed06ef11c002dd3275b71f91e346a716b53f93bc79faae/68747470733a2f2f706f7365722e707567782e6f72672f72656e6564656b61742f6c61726176656c2d766965772d66696e6465722d637265617465722f762f756e737461626c65)](https://packagist.org/packages/renedekat/laravel-view-finder-creater)[![License](https://camo.githubusercontent.com/86305f65203e06fda101c7cc67fdbdcc9eeaef38bb845cade5ccf23c84940de7/68747470733a2f2f706f7365722e707567782e6f72672f72656e6564656b61742f6c61726176656c2d766965772d66696e6465722d637265617465722f6c6963656e7365)](https://packagist.org/packages/renedekat/laravel-view-finder-creater)[![composer.lock](https://camo.githubusercontent.com/0041de1527cbead4f2b8e1563b6e10f9d12d56e592d44dad0e1a7032b98368db/68747470733a2f2f706f7365722e707567782e6f72672f72656e6564656b61742f6c61726176656c2d766965772d66696e6465722d637265617465722f636f6d706f7365726c6f636b)](https://packagist.org/packages/renedekat/laravel-view-finder-creater)

[![Build Status](https://camo.githubusercontent.com/943848a2213291a72878b7b3bb8345c698b015996f189c4c34a89c6ef78642c0/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f72656e6564656b61742f6c61726176656c2d766965772d66696e6465722d637265617465722f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/renedekat/laravel-view-finder-creater/build-status/master)[![StyleCI](https://camo.githubusercontent.com/077341d3d6125eba89d1972a1f22e6107c3c945f94e4732d3446c61855c76e84/68747470733a2f2f7374796c6563692e696f2f7265706f732f37393132373130392f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/79127109)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/eb9ee1e288e7f49ec42a02adf13e58ed41440a034c0c933a5d7c768309c04a18/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f72656e6564656b61742f6c61726176656c2d766965772d66696e6465722d637265617465722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/renedekat/laravel-view-finder-creater/?branch=master)[![SensioLabsInsight](https://camo.githubusercontent.com/e6a8430a0095bea80967b81056877b52e36884e5d3f2e7d50c3b369bb014acc5/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f61353331666265312d393633362d346365642d626433642d3131343463373132353430662f6d696e692e706e67)](https://insight.sensiolabs.com/projects/a531fbe1-9636-4ced-bd3d-1144c712540f)

Laravel View Finder that creates missing view files
===================================================

[](#laravel-view-finder-that-creates-missing-view-files)

By default Laravel throws an error when a view file cannot be found. This package replaces the default view finder, and creates your missing view files on the fly, based on a template.

The default template can be found in resources/assets/pages/missing.blade.php after you've published it.

Installation
------------

[](#installation)

Via Composer

```
$ composer require renedekat/laravel-view-finder-creater --sort-packages
```

Replace the default ViewServiceProvider

```
// config/app.php
'providers' => [
	...
	//Illuminate\View\ViewServiceProvider::class,
	ReneDeKat\LaravelViewFileFinder\ViewServiceProvider::class,
];
```

Or, if you only want to use it locally (handy during development)

```
// config/app.php
'providers' => [
	...
	//Illuminate\View\ViewServiceProvider::class,
];
```

```
// app/Providers/AppServiceProvider
public function register()
{
    ...
    if ('local' == $this->app->environment()) {
        $this->app->register(\ReneDeKat\LaravelViewFileFinder\ViewServiceProvider::class);
    } else {
        $this->app->register(\Illuminate\View\ViewServiceProvider::class);
    }
    ...
}
```

The missing page template file must be published with this command:

```
php artisan vendor:publish --provider="ReneDeKat\LaravelViewFileFinder\ViewServiceProvider" --tag="assets"
```

It will be published in `resources/assets/pages/missing.blade.php`

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- \[René de Kat\]\[\]

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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

Every ~0 days

Total

4

Last Release

3401d ago

Major Versions

v1.0.4 → v2.0.02017-01-18

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

renedekatlaravel-view-finder-creater

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/renedekat-laravel-view-finder-creater/health.svg)

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

###  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)[ycs77/inertia-laravel-ssr-head

Simple SSR Head for Inertia Laravel

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

PHPackages © 2026

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