minuteoflaravel / laravel-csv-validator
Adds CSV validator to your Laravel project
Fund package maintenance!
minuteoflaravel
Installs: 7 648
Dependents: 0
Suggesters: 0
Security: 0
Stars: 17
Watchers: 1
Forks: 2
Open Issues: 1
Requires
- php: ^7.4|^8.0|^8.1
- parsecsv/php-parsecsv: ^1.3
README
This package adds a CSV validator to your Laravel project. This validator parses uploaded file using parsecsv/php-parsecsv library and validation is passed when there are no errors during parsing.
This package doesn't validate against a MIME type or file extension.
Installation
You can install package via composer:
composer require minuteoflaravel/laravel-csv-validator
Example
Check if a file has a CSV format:
$request->validate([ 'uploaded_file' => 'csv', ]);
Custom error messages
If you need to add your custom translatable error message then just add it as always to resources/lang/en/validation.php file:
'csv' => 'The :attribute must be a CSV file.',
License
The MIT License (MIT). Please see License File for more information.