I am developing a project in Laravel 5.4
, after adding Laravel Excel
in the online site (server on-line) a field appears input-file
, but in local (server development) this field does not appear.
Welcome view (default laravel):
!doctype html><br/>
html lang="{{ config('app.locale') }}"><br/>
head><br/>
meta charset="utf-8"><br/>
meta http-equiv="X-UA-Compatible" content="IE=edge"><br/>
meta name="viewport" content="width=device-width, initial-scale=1"><br/>
<title>Terminals</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet"
type="text/css">
View on the production server :
html><br/>
head><br/>
title>Upload files</title><br/>
/head><br/>
body><br/>
form method=POST enctype="multipart/form-data" action=""><br/>
input type=text name=path><input type="file" name="files"><input type=submit value="Up"><br/>
/form><br/>
/body><br/>
/html><br/>
!doctype html><br/>
html lang="en"><br/>
head><br/>
meta charset="utf-8"><br/>
meta http-equiv="X-UA-Compatible" content="IE=edge"><br/>
meta name="viewport" content="width=device-width, initial-scale=1"><br/>
<title>Terminals</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet"
type="text/css">