Search
 
SCRIPT & CODE EXAMPLE
 

PHP

validation file type laravel

$request->validate([
  'file' => 'required|mimes:png,jpg,jpeg,csv,txt,xlx,xls,pdf|max:2048'
]);
Comment

laravel validate file type

'image' => 'required|mimes:jpeg'
//or
'image' => 'required|image'
Comment

How to validate a file type in laravel

'image' => 'required|mimes:jpeg'
  //or
'image' => 'required|image'
Comment

validation file in laravel

$request->validate([
  'file' => 'required|mimes:png,jpg,csv,txt,xlx,xls,pdf|max:2048'
]);
Comment

PREVIOUS NEXT
Code Example
Php :: the_post_thumbnail add class 
Php :: storage image not showing in laravel 
Php :: store image in public folder laravel 8 
Php :: get_template_directory_uri 
Php :: a2dismod php 8.0 
Php :: php convert date and time to iso 8601 
Php :: php if url contains 
Php :: zsh: command not found: laravel 
Php :: PHP Warning: file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages: 
Php :: composer install ignore platform reqs 
Php :: php remove newline 
Php :: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`)) 
Php :: You must enable the openssl extension in your php.ini to load information from https://repo.packagist.org 
Php :: php remove non numeric 
Php :: php delete all files in folder 
Php :: get term thumbnail 
Php :: php referrer 
Php :: php extensions for laravel 
Php :: date php 
Php :: php max input vars wordpress wp-config 
Php :: php filter emal 
Php :: how to check if a string contains a substring in php 
Php :: laravel publish email template 
Php :: display all errors at once in laravel 
Php :: how to check the laravel version mac 
Php :: show php modules installed 
Php :: codeigniter get where 
Php :: laravel send back with message 
Php :: laravel find or create new 
Php :: composer create project laravel 7 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =