entelechy/architect

Architect — a Laravel package for building data-rich admin interfaces with tables, navigation, stats, toolbar, and supersearch.

Maintainers

Package info

github.com/entelechy-software/architect

pkg:composer/entelechy/architect

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-06-28 21:36 UTC

This package is auto-updated.

Last update: 2026-06-28 21:59:12 UTC


README

PHP Laravel License

A Laravel package for building data-rich admin interfaces with tables, forms, navigation, dashboards, stats, supersearch, and notifications — powered by Livewire 4.

Requirements

  • PHP 8.3+
  • Laravel 13
  • Livewire 4.3+

Installation

composer require entelechy/architect

Publish the config and assets:

php artisan vendor:publish --tag=architect-config
php artisan vendor:publish --tag=architect-assets

Run the migrations:

php artisan migrate

Quick start

A table

use Entelechy\Architect\Facades\Architect;
use Entelechy\Architect\Table\Columns\TextColumn;

public function definition(): array
{
    return Architect::table()
        ->model(User::class)
        ->columns([
            TextColumn::make('name')->sortable()->searchable(),
            TextColumn::make('email')->sortable(),
        ])
        ->build();
}

A form

use Entelechy\Architect\Facades\Architect;
use Entelechy\Architect\Forms\Fields\TextField;
use Entelechy\Architect\Forms\Fields\SelectField;

public function definition(): array
{
    return Architect::form()
        ->fields([
            TextField::make('name')->required(),
            SelectField::make('role')->options(['admin' => 'Admin', 'user' => 'User']),
        ])
        ->build();
}

Features

  • Tables — sortable, filterable, searchable, exportable, bulk actions, permissions, row actions
  • Forms — 28 field types, conditional logic, autosave, wizard builder, repeaters
  • Navigation — tab-based SPA navigation with dynamic tabs
  • Dashboards — stat cards, charts, embedded tables, quick-form panels
  • Supersearch — global cross-resource search with keyboard shortcut
  • Notifications — toast, alert, inbox, and announcement delivery via rule engine
  • MCP tools — AI-assistant integration via the Laravel MCP server
  • Actions — slide-over create/edit/view panels driven by a fluent API

Documentation

Full documentation is available at the Architect website.

License

MIT. See LICENSE.