PHPackages                             futurex/app-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. futurex/app-page

ActiveLibrary[Admin Panels](/categories/admin)

futurex/app-page
================

A Laravel package for app landing pages with analytics, screenshots, features, and Filament admin panel.

1.0.6(1mo ago)03MITPHPPHP ^8.1

Since May 3Pushed 1mo agoCompare

[ Source](https://github.com/Naeem-j3/futurex-app-page)[ Packagist](https://packagist.org/packages/futurex/app-page)[ RSS](/packages/futurex-app-page/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (2)Versions (7)Used By (0)

FutureX App Page
================

[](#futurex-app-page)

A Laravel package to create beautiful app landing pages with a powerful Filament admin dashboard.

It includes:

- App landing page
- Features management
- Screenshots gallery
- Contact section
- Click tracking
- Visit duration analytics
- Filament 3 admin panel

---

🚀 Requirements
--------------

[](#-requirements)

- PHP 8.1+
- Laravel 10/11+
- Filament 3

---

📦 Installation
--------------

[](#-installation)

Install via Composer:

```
composer require futurex/app-page
```

Run migrations:

```
php artisan migrate
```

Publish Filament assets:

```
php artisan filament:assets
```

Clear caches:

```
php artisan optimize:clear
```

---

🔐 Admin Access
--------------

[](#-admin-access)

The dashboard is protected and only allows specific emails to log in.

By default, the allowed email is:

```
admin@gmail.com

```

> ⚠️ You should change this to your own email before using the package in production.

### How to change the allowed emails

[](#how-to-change-the-allowed-emails)

**Step 1** — Publish the config file:

```
php artisan vendor:publish --tag=app-page-config
```

This will create `config/app-page.php` in your project.

**Step 2** — Open `config/app-page.php` and update the `allowed_emails` array:

```
'allowed_emails' => [
    'your-email@example.com',
    // you can add multiple emails
],
```

**Step 3** — Make sure a user with that email exists in your `users` table. You can create one via Tinker:

```
php artisan tinker
```

```
\App\Models\User::create([
    'name'     => 'Admin',
    'email'    => 'your-email@example.com',
    'password' => bcrypt('your-password'),
]);
```

Then visit `/app-panel/login` and log in with those credentials.

---

⚙️ Configuration
----------------

[](#️-configuration)

After publishing the config, you can customize the following options in `config/app-page.php`:

```
return [

    // URL prefix for the landing page (default: /app-page)
    'route_prefix' => 'app-page',

    // Enable/disable visit tracking
    'track_visits' => true,

    // Enable/disable visit duration tracking
    'track_duration' => true,

    // Emails allowed to access the admin dashboard
    'allowed_emails' => [
        'admin@gmail.com', // ← change this to your email
    ],

];
```

---

🎨 Publish Views (Optional)
--------------------------

[](#-publish-views-optional)

If you want to customize the landing page design:

```
php artisan vendor:publish --tag=app-page-views
```

This copies the Blade views to `resources/views/vendor/app-page/` where you can freely edit them.

---

🌐 URLs
------

[](#-urls)

URLDescription`/app-page`Public landing page`/app-panel`Admin dashboard (Filament)`/app-panel/login`Admin login page

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance93

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity46

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

Every ~0 days

Total

6

Last Release

36d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/127094584?v=4)[Naeem-j3](/maintainers/Naeem-j3)[@Naeem-j3](https://github.com/Naeem-j3)

---

Top Contributors

[![Naeem-j3](https://avatars.githubusercontent.com/u/127094584?v=4)](https://github.com/Naeem-j3 "Naeem-j3 (10 commits)")

---

Tags

laravelpackageanalyticslanding pagefilamentapp page

### Embed Badge

![Health badge](/badges/futurex-app-page/health.svg)

```
[![Health](https://phpackages.com/badges/futurex-app-page/health.svg)](https://phpackages.com/packages/futurex-app-page)
```

###  Alternatives

[awcodes/filament-quick-create

Plugin for Filament Admin that adds a dropdown menu to the header to quickly create new items.

249203.6k11](/packages/awcodes-filament-quick-create)[mradder/filament-logger

Audit logging, activity tracking, exports, alerts, and dashboards for Filament admin panels.

2210.5k](/packages/mradder-filament-logger)[openplain/filament-tree-view

Tree view for Filament resources - drop-in replacement for Table with drag-and-drop hierarchical data management

3621.1k](/packages/openplain-filament-tree-view)[caresome/filament-neobrutalism-theme

A neobrutalism theme for FilamentPHP admin panels

324.9k1](/packages/caresome-filament-neobrutalism-theme)[andreia/filament-ui-switcher

Add a modal with options to switch between different UI layouts and styles (colors, fonts, font sizes).

245.8k](/packages/andreia-filament-ui-switcher)[a2insights/filament-saas

Filament Saas for A2Insights

171.5k](/packages/a2insights-filament-saas)

PHPackages © 2026

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