Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to create view Laravel - File Uploading ?

Answer Posted / sunil kumar

Create a view file called resources/views/uploadfile.php and copy the following code in that file.
resources/views/uploadfile.php

Example :

<html>
<body>
<?php
echo Form::open(array('url' => '/uploadfile','files'=>'true'));
echo 'Select the file to upload.';
echo Form::file('image');
echo Form::submit('Upload File');
echo Form::close();
?>
</body>
</html>

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is php artisan.

764


How to check column is exists or not in a table using laravel?

762


Explain extending bindings?

797


Explain active record concept in laravel.

818


In which directory controllers are kept in laravel?

774


What are the directory structure of laravel 5.8?

742


What is database migration? And how to use it to add insert initial data to database?

812


What is orm framework?

768


How to generate a controller with resources in laravel?

849


How do I use sub-domain routing?

779


Where will you define laravel's facades?

791


What is database migration used in laravel 5? Explain

701


How do I seed my database for column that is a foreign key referencing to other table?

720


Define homebrew?

827


What are the steps Redirecting to Named Routes in Laravel ?

1458