PHPackages                             phpsa/filament-headless-cms - 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. [API Development](/categories/api)
4. /
5. phpsa/filament-headless-cms

ActiveLibrary[API Development](/categories/api)

phpsa/filament-headless-cms
===========================

Headless CMS for filament

v1.1.0(1y ago)035[9 issues](https://github.com/phpsa/filament-headless-cms/issues)MITPHPPHP ^8.1

Since May 10Pushed 1y ago1 watchersCompare

[ Source](https://github.com/phpsa/filament-headless-cms)[ Packagist](https://packagist.org/packages/phpsa/filament-headless-cms)[ Docs](https://github.com/phpsa/filament-headless-cms)[ GitHub Sponsors](https://github.com/phpsa)[ RSS](/packages/phpsa-filament-headless-cms/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (10)Versions (4)Used By (0)

[![Latest Version on Packagist](https://camo.githubusercontent.com/55b1a64681b4d2a71222af1831039554baac4c4f0f8d63b957b70f784e36f1b1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f70687073612f66696c616d656e742d686561646c6573732d636d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/phpsa/filament-headless-cms)[![Semantic Release](https://github.com/phpsa/filament-headless-cms/actions/workflows/release.yml/badge.svg)](https://github.com/phpsa/filament-headless-cms/actions/workflows/release.yml)[![Total Downloads](https://camo.githubusercontent.com/15ea20d97776723d97198d4950294a68e1626539b3ac16ea10c05f7f27788de3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f70687073612f66696c616d656e742d686561646c6573732d636d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/phpsa/filament-headless-cms)

Filament Headless CMS
=====================

[](#filament-headless-cms)

Starting point for a headless CMS for filament - notes on how to use with api / non-api below

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

[](#installation)

You can install the package via composer:

```
composer require phpsa/filament-headless-cms
php artisan filament-headless-cms::install
```

in the panel you are using

```
public function panel(Panel $panel): Panel
    {
        return $panel
            ->default()
            ->id('admin')
            ->path('/admin')
            ...
            ->plugin(FilamentHeadlessCms::make())
```

Usage
-----

[](#usage)

### Within Filament

[](#within-filament)

After running the [Install Command](#installation), you will find a new Content Group and Sample Content Resources in your Filament Admin.

### Templates

[](#templates)

This package comes with basic page and blog type template. By creating and selecting your own templates, you are able to fully customize your pages.

To create your own Templates, extend the `Phpsa\FilamentHeadlessCms\Contracts\PageTemplate` abstract class:

```
