filament-media-action
Automatically display your media (video, audio, pdf, image, ...) with an action in Filament
File Explorer
- bug.yml
- config.yml
- run-tests.yml
- update-changelog.yml
- CONTRIBUTING.md
- dependabot.yml
- FUNDING.yml
- SECURITY.md
- build.js
- example1.png
- example2.png
- example3.png
- example4.png
- example5.png
- example6.png
- example7.png
- index.css
- .gitkeep
- index.js
- media-action.php
- media-action.php
- media-action.php
- media-action.php
- media-modal-content.blade.php
- .gitkeep
- MediaAction.php
- HasMedia.php
- FilamentMediaAction.php
- FilamentMediaAction.php
- FilamentMediaActionServiceProvider.php
- .gitkeep
- MediaActionFeatureTest.php
- MediaTypeDetectionTest.php
- TestMediaAction.php
- TestModel.php
- ConstantsTest.php
- IntegrationTest.php
- MediaActionTest.php
- MediaTypeDetectionTest.php
- ViewRenderingTest.php
- Pest.php
- TestCase.php
- .editorconfig
- .gitattributes
- .gitignore
- .prettierrc
- CHANGELOG.md
- composer.json
- LICENSE.md
- package.json
- phpunit.xml.dist
- postcss.config.cjs
- README.md
- tailwind.config.js
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
composer
View Details ▼
composer
A package-based dependency manager for PHP projects.
composer init
Interactively create a `composer.json` file:
composer require {{user/package}}
Add a package as a dependency for this project, adding an entry to `composer.json`:
composer install
Install all the dependencies in this project's `composer.json` and create `composer.lock`:
php artisan
View Details ▼
php artisan
Laravel's Artisan command-line interface.
php artisan serve
Start PHP's built-in web server for the current Laravel application:
php artisan tinker
Start an interactive PHP command-line interface:
php artisan make:model {{ModelName}} --all
Generate a new Eloquent model class with a migration, factory, and resource controller:
