swisnl/filament-backgrounds
Composer 安装命令:
composer require swisnl/filament-backgrounds
包简介
Beautiful backgrounds for Filament auth pages
README 文档
README
A curated list of (free to use) images, to give your Filament auth pages a unique look. Rather use your own images? No problem, you can also use your own images. Or go wild and create your own image provider based on the weather, time of day, or whatever you can think of!
Version Compatibility
| Plugin Version | Filament Version | PHP Version |
|---|---|---|
| 2.x | 4.x,5.x | 8.2+ |
| 1.x | 3.x | 8.1+ |
Installation
You can install the package via composer:
composer require swisnl/filament-backgrounds
Next, publish the images if you want to use the default list:
php artisan filament-backgrounds:install
Usage
Add the plugin to your panel provider:
use Swis\Filament\Backgrounds\FilamentBackgroundsPlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ FilamentBackgroundsPlugin::make(), ]) }
Hide attribution
You can disable attribution by passing false to the showAttribution method on the plugin. Please note that this is not recommended, and sometimes prohibited, as the photographers deserve credit for their work, or the license requires you to show the attribution!
use Swis\Filament\Backgrounds\FilamentBackgroundsPlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ FilamentBackgroundsPlugin::make() ->showAttribution(false), ]) }
Remember
You can specify a cache time in seconds using the remember method on the plugin. This is especially useful if you use an image provider that uses an API or other external source, so you don't hit the API on every request!
use Swis\Filament\Backgrounds\FilamentBackgroundsPlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ FilamentBackgroundsPlugin::make() ->remember(900), ]) }
Use your own images
You can use your own images by passing an instance of MyImages to the imageProvider method on the plugin. This provider allows you to specify a directory (inside your public directory) where your images are stored. The images will be randomly picked from this directory.
use Swis\Filament\Backgrounds\FilamentBackgroundsPlugin; use Swis\Filament\Backgrounds\ImageProviders\MyImages; public function panel(Panel $panel): Panel { return $panel ->plugins([ FilamentBackgroundsPlugin::make() ->imageProvider( MyImages::make() ->directory('images/backgrounds') ), ]) }
Available image providers
Swis\Filament\Backgrounds\ImageProviders\CuratedBySwis
Default curated set of (free to use) images from multiple sources, based on the day of the month. You can find the images in the resources/images/curated-by-swis directory.
Swis\Filament\Backgrounds\ImageProviders\MyImages
Swis\Filament\Backgrounds\ImageProviders\Triangles
A set of low poly patterns created using Trianglify. You can find the patterns in the resources/images/triangles directory.
Writing a custom image provider
To create your own image provider, you need to implement the ProvidesImages interface. This interface has one method, getImage, which should return an Image object. The image object takes two arguments, the first is the CSS background-image property, the second is the attribution text. The image will be directly used as background-image in CSS, so it should include url(), which allows you to even use gradients or other fancy stuff!
<?php use Swis\Filament\Backgrounds\Contracts\ProvidesImages; use Swis\Filament\Backgrounds\Image; class MyImageProvider implements ProvidesImages { public static function make(): static { return app(static::class); } public function getImage(): Image { return new Image( 'url("[link to photo]")', 'Photo by ...' ); } }
N.B. Make sure you cache the result if you use an API or other external sources, so you don't hit the API on every request!
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
All images included in this package are free to use for commercial and noncommercial purposes and come from multiple sources:
SWIS ❤️ Open Source
SWIS is a web agency from Leiden, the Netherlands. We love working with open source software.
swisnl/filament-backgrounds 适用场景与选型建议
swisnl/filament-backgrounds 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 174.59k 次下载、GitHub Stars 达 54, 最近一次更新时间为 2023 年 11 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「swisnl」 「backgrounds」 「filament」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 swisnl/filament-backgrounds 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 swisnl/filament-backgrounds 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 swisnl/filament-backgrounds 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Fixture handler for Guzzle 6+
Model Context Protocol client implementation in PHP
PHP server integration for AG-UI - standardized AI agent frontend communication via Server-Sent Events
NDW Melvin API client
Laravel lti provider
Article backgrounds/Helper extension for Contao Open Source CMS
统计信息
- 总下载量: 174.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 54
- 点击次数: 18
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-11-24
