akhaled / livewire-files
Upload and browse files using livewire
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Language:Blade
Requires
- akhaled/livewire-sweetalert: ^0.0.1-beta
- livewire/livewire: ^2.0
This package is auto-updated.
Last update: 2024-11-20 00:54:21 UTC
README
Uploading file using Livewire and Tailwind.
Installation
composer require akhaled/livewire-files
Requirements
Frontend packages are required:
How to use
1. Add livewire component to your view
This component only displays a button within your content. This button is linked to tailwind modal.
@livewire('files-upload', [ 'image' => true, // accept only image, optional 'mimes' => 'pdf,csv', // or specify mime type, optional 'max' => 1024 // max 1024kb by default ])
2. Add scripts
... @livewireScript <script src="{{ mix('js/app.js') }}"></script> @livewireSweetalertScripts ...
Configuration
php artisan vendor:publish --tag=livewire-files
Will generate global config file.
store_dir
Default is public (storage/public
). You need to add the following line in config/filesystems.php under links property:
public_path('storage') => storage_path('app/public')
validation
image
: only accept images, default =false
mimes
: accepted mimes, default =null
(accepting everything)max
: maximum uploaded size, default =102400
(in kilobytes)
Plan
- Show toast on uploaded!
- Hide input file and show javascript link
- Move content to modal
- Show sweetalert popups instead of static alert
- Add button text and button color for upload button
- Specify upload files names
- Move uploads to directory year/month/day