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 do you understand by lumen?

775


Tell me why laravel over other php frameworks?

765


Differce between contracts and facades?

772


Is laravel easier than php?

705


What is heredoc syntax?

717


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

807


What is monolog library?

767


What are facades?

736


How to create custom middleware in laravel?

845


What is Basic Response in Laravel ?

1477


Write a code to upload a file in laravel 5?

827


Explain facades in laravel?

755


How to use laravel framework in php?

753


How do you register service providers?

708


Explain about Form without CSRF token in Laravel ?

1323