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

PREVIOUS NEXT
Code Example
Php :: simple localhost php 
Php :: laravel datatable format date column 
Php :: remove cache from cpanle larael 
Php :: set session after login with laravel 
Php :: PHP Create a MySQL Database 
Php :: laravel random value from array 
Php :: php money_format currency symbol 
Php :: remove foreign key constraint laravel 
Php :: parameterized function in php 
Php :: How to request and display data from db in larave 
Php :: pre function for PHP 
Php :: php clone 
Php :: date format change in laravel 
Php :: php list all constants 
Php :: laravel model with methos custom columns 
Php :: how to redirect to another page in php 
Php :: laravel translate 
Php :: laravel model update 
Php :: laravel check empty string 
Php :: run shell script from php file 
Php :: csrf token mismatch laravel 
Php :: how to play sound with php 
Php :: Exception #0 (MagentoFrameworkExceptionValidatorException): Invalid template file: 
Php :: iterating rows in php 
Php :: codeigniter 3 send email smtp 
Php :: allow json uploads in Wordpress 
Php :: how to cheeck php 
Php :: laravel eloquent get first 
Php :: foreach reverse laravel 
Php :: or where laravel 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =