PHPackages                             misaf/vendra-custom-page - 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. [Admin Panels](/categories/admin)
4. /
5. misaf/vendra-custom-page

ActiveVendra-module[Admin Panels](/categories/admin)

misaf/vendra-custom-page
========================

Dynamic page management system with CMS capabilities

143[1 issues](https://github.com/misaf/vendra-custom-page/issues)PHPCI failing

Since Jun 25Pushed 2w agoCompare

[ Source](https://github.com/misaf/vendra-custom-page)[ Packagist](https://packagist.org/packages/misaf/vendra-custom-page)[ RSS](/packages/misaf-vendra-custom-page/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Vendra Custom Page
==================

[](#vendra-custom-page)

Tenant-aware custom page management for Vendra applications.

Features
--------

[](#features)

- Custom page categories
- Custom pages with translatable content
- Filament resources on the `admin` panel

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 12
- Filament 5
- Livewire 4
- Pest 4
- Tailwind CSS 4
- `misaf/vendra-tenant`
- `misaf/vendra-activity-log`

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

[](#installation)

```
composer require misaf/vendra-custom-page
php artisan vendor:publish --tag=vendra-custom-page-migrations
php artisan migrate
```

Optional translations publish:

```
php artisan vendor:publish --tag=vendra-custom-page-translations
```

The service provider and Filament plugin are auto-registered.

Usage
-----

[](#usage)

Create a page category:

```
use Misaf\VendraCustomPage\Models\CustomPageCategory;

$category = CustomPageCategory::query()->create([
    'name' => ['en' => 'Company'],
    'description' => ['en' => 'Company pages'],
    'slug' => ['en' => 'company'],
    'position' => 1,
    'status' => true,
]);
```

Create a custom page:

```
use Misaf\VendraCustomPage\Models\CustomPage;

CustomPage::query()->create([
    'custom_page_category_id' => $category->id,
    'name' => ['en' => 'About Us'],
    'description' => ['en' => 'About our company'],
    'slug' => ['en' => 'about-us'],
    'position' => 1,
    'status' => true,
]);
```

Load pages with their category:

```
$pages = CustomPage::query()
    ->with('customPageCategory')
    ->where('status', true)
    ->get();
```

Filament
--------

[](#filament)

Resources are available in the `Custom Pages` cluster on the `admin` panel:

- Custom Page Categories
- Custom Pages

Testing
-------

[](#testing)

```
composer test
```

License
-------

[](#license)

MIT. See [LICENSE](LICENSE).

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance43

Moderate activity, may be stable

Popularity8

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/41fd7351d25e29dafa18068d0418eecf6bb47a7473aabe6bc674b4ca35e71805?d=identicon)[misaf](/maintainers/misaf)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/misaf-vendra-custom-page/health.svg)

```
[![Health](https://phpackages.com/badges/misaf-vendra-custom-page/health.svg)](https://phpackages.com/packages/misaf-vendra-custom-page)
```

PHPackages © 2026

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