CloudFileLinks
CommunityA KeyValue-style Filament form field for cloud file links: clickable names, edit/delete actions, and file-type icons.
Author:
Alona
Package health
BetaAutomated checks of this plugin's Composer package
15 checks
- Skipped: GitHub Actions pinned to SHA
- Skipped: GitLab CI includes pinned to SHA
- Passed: Open security advisories
- Passed: Dependabot PR responsiveness — No open Dependabot PRs.
- Skipped: Renovate MR responsiveness
- Skipped: Dependabot or Renovate configured
- Skipped: Dependency update cooldown configured
- Failed: Provides a security policy — View details on Plumb
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Passed: Commit and release recency — Active: last commit 7 days ago; last release 7 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
-
Passed:
Current Laravel version supported
—
Package dependencies resolve together with current Laravel
13.0. -
Passed:
Current PHP version supported
—
Constraint
^8.1supports current PHP8.5. - Skipped: Current Symfony version supported
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
A Filament form field based on KeyValue. Stores an array of link name => URL for cloud storage file links.
#UI
Looks like KeyValue, but with:
- File / Link — clickable name that opens the hidden URL
- Edit — modal with the same form as when adding
- Delete — removes the row
#Requirements
- PHP 8.1+
- Filament Forms 3.x, 4.x, or 5.x
#Installation
composer require alenadashko/filament-cloud-file-links
The service provider is registered via Laravel package discovery.
#Local path development (optional)
{
"repositories": [
{
"type": "path",
"url": "../filament-cloud-file-links",
"options": {
"symlink": true
}
}
],
"require": {
"alenadashko/filament-cloud-file-links": "^2.0"
}
}
composer update alenadashko/filament-cloud-file-links
#Usage
use FilamentCloudFileLinks\Forms\Components\CloudFileLinks;
CloudFileLinks::make('cloud_files')
->label('Cloud files')
Cast the model attribute to array (same as KeyValue):
protected $casts = [
'cloud_files' => 'array',
];
Stored value shape:
[
'Contract.pdf' => 'https://storage.example.com/files/abc123',
'Passport scan' => 'https://storage.example.com/files/def456',
]
#Customization
CloudFileLinks::make('cloud_files')
->fileLabel('Documents')
->emptyLabel('No documents yet')
->nameFieldLabel('Name')
->urlFieldLabel('URL')
->nameFieldPlaceholder('e.g. Certificate of completion')
->urlFieldPlaceholder('https://...')
->addActionLabel('Add document')
->editActionLabel('Edit document')
->addable()
->deletable()
->deleteRequiresConfirmation()
->deleteConfirmationModalHeading('Delete document')
->deleteConfirmationModalDescription('This cannot be undone.')
->deleteConfirmationModalSubmitActionLabel('Yes, delete')
->deleteConfirmationModalCancelActionLabel('Cancel')
->editableKeys() // together with editableValues controls the Edit button
->editableValues();
#License
MIT
The author
From the same author
DropdownCheckboxList
A compact, searchable dropdown version of Filament's CheckboxList — selected values display as removable badges, with support for server-side search on large datasets.
Author:
Alona
Color Themes
Filament Color Themes allows your users to switch between multiple professionally designed color palettes directly from the user menu — no custom CSS, no rebuilding assets, and no complicated configuration.
Author:
Alona
Featured Plugins
A selection of plugins curated by the Filament team
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese