PHPackages                             jeffersongoncalves/mobilekit - 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. [Framework](/categories/framework)
4. /
5. jeffersongoncalves/mobilekit

ActiveProject[Framework](/categories/framework)

jeffersongoncalves/mobilekit
============================

MobileKit starter kit built on Laravel 12.x, Filament 3.x and NativePHP for native mobile applications.

3.3.49(2mo ago)42MITPHPPHP ^8.2CI passing

Since Jul 12Pushed 1mo ago2 watchersCompare

[ Source](https://github.com/jeffersongoncalves/mobilekit)[ Packagist](https://packagist.org/packages/jeffersongoncalves/mobilekit)[ GitHub Sponsors](https://github.com/jeffersongoncalves)[ RSS](/packages/jeffersongoncalves-mobilekit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (15)Versions (16)Used By (0)

[![MobileKit](https://raw.githubusercontent.com/jeffersongoncalves/mobilekit/main/art/jeffersongoncalves-mobilekit.png)](https://raw.githubusercontent.com/jeffersongoncalves/mobilekit/main/art/jeffersongoncalves-mobilekit.png)

MobileKit Start Kit NativePHP 1.x, Filament 3.x and Laravel 12.x
================================================================

[](#mobilekit-start-kit-nativephp-1x-filament-3x-and-laravel-12x)

About MobileKit
---------------

[](#about-mobilekit)

MobileKit is a robust starter kit built on Laravel 12.x, Filament 3.x and NativePHP 1.x, designed to accelerate the development of modern native desktop and mobile applications with a ready-to-use multi-panel structure. Build native iOS and Android applications using PHP, alongside desktop applications for Windows, macOS, and Linux.

Features
--------

[](#features)

- **Laravel 12.x** - The latest version of the most elegant PHP framework
- **Filament 3.x** - Powerful and flexible admin framework
- **NativePHP 1.x** - Build native desktop and mobile applications with PHP
- **Mobile Development** - Native iOS and Android app development with NativePHP Mobile
- **Desktop Development** - Native Windows, macOS, and Linux applications with NativePHP Electron
- **Multi-Panel Structure** - Includes three pre-configured panels:
    - Admin Panel (`/admin`) - For system administrators
    - App Panel (`/app`) - For authenticated application users
    - Guest Panel (frontend interface) - For visitors
- **Mobile Configuration** - Comprehensive mobile app settings including app ID, version management, deep linking, and platform-specific configurations
- **Cross-Platform Support** - Single codebase for iOS, Android, Windows, macOS, and Linux
- **Environment Configuration** - Centralized configuration through the `config/mobilekit.php` file
- **Testing Framework** - Pest PHP for elegant testing
- **Code Quality Tools** - Laravel Pint for code formatting and Larastan for static analysis
- **Development Tools** - IDE Helper, Laravel Pail for log monitoring

System Requirements
-------------------

[](#system-requirements)

### General Requirements

[](#general-requirements)

- PHP 8.2 or higher
- Composer
- Node.js and PNPM

### Desktop Development

[](#desktop-development)

- No additional requirements

### Mobile Development

[](#mobile-development)

- **Android Development:**
    - Android SDK
    - Android Studio (recommended)
    - Java Development Kit (JDK) 11 or higher
- **iOS Development (macOS only):**
    - Xcode 14 or higher
    - iOS Simulator
    - Apple Developer Account (for device testing and App Store distribution)

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

[](#installation)

Clone the repository

```
laravel new my-app --using=jeffersongoncalves/mobilekit
```

### Using FilaKit CLI

[](#using-filakit-cli)

Or use [FilaKit CLI](https://github.com/jeffersongoncalves/filakit-cli) for a simplified setup:

```
filakit new my-app --kit=jeffersongoncalves/mobilekit
```

> Install FilaKit CLI: `composer global require jeffersongoncalves/filakit-cli`

### Easy Installation

[](#easy-installation)

Mobilekit can be easily installed using the following command:

```
php install.php
```

This command automates the installation process by:

- Installing Composer dependencies
- Setting up the environment file
- Generating application key
- Setting up the database
- Running migrations
- Installing Node.js dependencies
- Building assets

### Manual Installation

[](#manual-installation)

Install JavaScript dependencies

```
pnpm install
```

Install Composer dependencies

```
composer install
```

Set up environment

```
cp .env.example .env
php artisan key:generate
```

Configure your database in the .env file

Run migrations

```
php artisan native:migrate
```

Run the server

```
php artisan native:serve
```

Authentication Structure
------------------------

[](#authentication-structure)

MobileKit comes pre-configured with a custom authentication system that supports different types of users:

- `Admin` - For administrative panel access
- `User` - For application panel access

Development
-----------

[](#development)

### Desktop Development

[](#desktop-development-1)

```
# Run the development server with logs, queues and asset compilation
composer native:dev

# Or run each component separately
php artisan native:serve
pnpm run dev
```

### Mobile Development

[](#mobile-development-1)

For mobile application development, NativePHP Mobile provides additional commands:

```
# Build for Android
php artisan native:android

# Build for iOS (macOS only)
php artisan native:ios

# Run mobile development server
php artisan native:serve --mobile
```

**Mobile Development Requirements:**

- **Android**: Android Studio and Android SDK
- **iOS**: Xcode (macOS only) and iOS SDK
- **Both**: Java Development Kit (JDK) 11 or higher

Customization
-------------

[](#customization)

### Panel Configuration

[](#panel-configuration)

Panels can be customized through their respective providers:

- `app/Providers/Filament/AdminPanelProvider.php`
- `app/Providers/Filament/AppPanelProvider.php`
- `app/Providers/Filament/GuestPanelProvider.php`

Alternatively, these settings are also consolidated in the `config/mobilekit.php` file for easier management.

### Themes and Colors

[](#themes-and-colors)

Each panel can have its own color scheme, which can be easily modified in the corresponding Provider files or in the `mobilekit.php` configuration file.

### Configuration File

[](#configuration-file)

The `config/mobilekit.php` file centralizes the configuration of the starter kit, including:

- Panel routes
- Middleware for each panel
- Branding options (logo, colors)
- Authentication guards

Resources
---------

[](#resources)

MobileKit includes comprehensive support for:

- **User Management** - User and admin management with multi-guard authentication
- **UI Framework** - Tailwind CSS integration with Filament components
- **Queue System** - Database queue configuration for background processing
- **Panel System** - Customizable panel routing and branding
- **Desktop Development** - Native desktop application development with NativePHP
- **Mobile Development** - Native mobile application support
- **Cross-Platform** - Full compatibility across Windows, macOS, Linux, iOS, and Android
- **Testing Suite** - Pest PHP testing framework with Laravel integration
- **Code Quality** - Laravel Pint formatting and Larastan static analysis
- **Development Tools** - IDE helpers, log monitoring with Laravel Pail
- **Asset Management** - Vite integration for modern asset compilation

License
-------

[](#license)

This project is licensed under the [MIT License](LICENSE).

Credits
-------

[](#credits)

Developed by [Jefferson Gonçalves](https://github.com/jeffersongoncalves).

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance89

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~19 days

Recently: every ~26 days

Total

13

Last Release

77d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/411493?v=4)[Jefferson Gonçalves](/maintainers/jeffersongoncalves)[@jeffersongoncalves](https://github.com/jeffersongoncalves)

---

Top Contributors

[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (86 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (58 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (34 commits)")

---

Tags

androidfilamentfilament-starter-kitfilament-v3ioslaravellaravel-12livewirelivewire-v3mobilenativephpphpstarter-kittailwindcssframeworklaravelfilamentnativephpkitstarter-kitlaravel-starter-kitstart-kitfilament-starter-kitcross-platformios-appmobile-appnativephp-starter-kitdesktop-appandroid-app

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/jeffersongoncalves-mobilekit/health.svg)

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

###  Alternatives

[raugadh/fila-starter

Laravel Filament Starter.

614.9k](/packages/raugadh-fila-starter)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[ercogx/laravel-filament-starter-kit

This is a Filament v3 Starter Kit for Laravel 12, designed to accelerate the development of Filament-powered applications.

401.5k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

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