Solution :
Step1 : open public folder and copy index.php
step2 : Paste index.php to root of your laravel folder (suppose your laravel folder name is [...]
Solution :
Step1 : add following to your composer.json file
"barryvdh/laravel-dompdf": "0.6.*",
step2: update your composer using command.
composer [...]
$validator = Validator::make($request->all(), [
'Picture' => 'required|image|mimes:jpeg,bmp,png,gif,PNG,jpg',
// Picture is name of file you set in [...]
Here is example for upload file in larave :
public function user()
{
$user = new User;
$form_input = Input::all();
if (Input::hasFile('Picture')) { [...]
All Laravel routes are defined in the app/Http/routes.php file, which is automatically loaded by the framework. The most basic Laravel routes simply accept a [...]