PHPackages                             cwsps154/my-gallery - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. cwsps154/my-gallery

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

cwsps154/my-gallery
===================

Filament package for gallery

v1.0.0(1y ago)054MITPHPPHP ^8.2

Since Mar 31Pushed 1y ago1 watchersCompare

[ Source](https://github.com/CWSPS154/my-gallery)[ Packagist](https://packagist.org/packages/cwsps154/my-gallery)[ RSS](/packages/cwsps154-my-gallery/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

MyGallery
=========

[](#mygallery)

Filament package for gallery

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

[](#installation)

Install Using Composer

```
composer require cwsps154/my-gallery
```

Run

```
php artisan my-gallery:install
php artisan filament:assets
```

Usage/Examples
--------------

[](#usageexamples)

Add this into your Filament `PannelProvider` class `panel()`

```
use CWSPS154\UsersRolesPermissions\MyGalleryPlugin;

$panel->plugins([MyGalleryPlugin::make()]);
```

You can limit the access to the resources

```
use CWSPS154\UsersRolesPermissions\MyGalleryPlugin;

MyGalleryPlugin::make()
    ->canViewAny(function () {
        return true;
    })
    ->canCreate(function () {
        return true;
    })
    ->canEdit(function () {
        return true;
    })
    ->canDelete(function () {
        return true;
    })
```

If you are using `cwsps154/users-roles-permissions` plugin you can use like this

```
use CWSPS154\MyGallery\Models\Gallery;
use CWSPS154\UsersRolesPermissions\MyGalleryPlugin;
use CWSPS154\UsersRolesPermissions\UsersRolesPermissionsServiceProvider;

MyGalleryPlugin::make()
    ->canViewAny(UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE, Gallery::VIEW_GALLERY)
    ->canCreate(UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE, Gallery::CREATE_GALLERY)
    ->canEdit(UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE, Gallery::EDIT_GALLERY)
    ->canDelete(UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE, Gallery::DELETE_GALLERY),
```

You can publish the config file `my-gallery.php`, by running this command

```
php artisan vendor:publish --tag=my-gallery-config
```

which contains these settings

```
return [
    'settings-page' => \CWSPS154\AppSettings\Page\AppSettings::class,
];
```

You have to run queue in your local to see the saved gallery

```
php artisan queue:work
```

Set the cron in server for the same

Screenshots
-----------

[](#screenshots)

[![MyGallery](screenshorts/list.png)](screenshorts/list.png)

[![MyGallery](screenshorts/create1.png)](screenshorts/create1.png)

[![MyGallery](screenshorts/create2.png)](screenshorts/create2.png)

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance49

Moderate activity, may be stable

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

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

Unknown

Total

1

Last Release

404d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1404be26270bb4e6e4eb885bb6035a99f1ed0ccc8fdb43be2a969aa7c32117b3?d=identicon)[CWSPS154](/maintainers/CWSPS154)

---

Top Contributors

[![sanoop-ps](https://avatars.githubusercontent.com/u/108001694?v=4)](https://github.com/sanoop-ps "sanoop-ps (11 commits)")

---

Tags

laravelfilamentfilament-packagesfilament-pluginscwsps154filament-gallery

### Embed Badge

![Health badge](/badges/cwsps154-my-gallery/health.svg)

```
[![Health](https://phpackages.com/badges/cwsps154-my-gallery/health.svg)](https://phpackages.com/packages/cwsps154-my-gallery)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)

PHPackages © 2026

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