Tutorial - Simple laravel Uploading File. Mengupload File di Laravel sangat mudah. Semua yang perlu kita lakukan adalah untuk membuat tampilan file di mana pengguna dapat memilih file yang akan di-upload dan controller di mana file upload akan diproses.
Dalam view. Kita hanya perlu untuk membuat file input dengan menambahkan baris kode berikut:
resources/views/uploadfile.php
app/Http/Controllers/UploadFileController.php
Mudah bukan? terima kasih sudah mengikuti tutorial ini, Mudah-mudahan membantu bagi yang baru belajar laravel.
Dalam view. Kita hanya perlu untuk membuat file input dengan menambahkan baris kode berikut:
Form::file('file_name');In Form::open(), kita perlu menambahkan ‘files’=>’true’.
Form::open(array('url' => '/uploadfile','files'=>'true'));
Example
Langkah 1 − Buat sebuah view misal : resources/views/uploadfile.php, copy kode dibawah ini:resources/views/uploadfile.php
<html>Langkah 2 − Buat controller UploadFileController dengan artistan command.
<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>
php artisan make:controller UploadFileController --plainLangkah 3 - Copy kode dibawah ini app/Http/Controllers/UploadFileController.php file.
app/Http/Controllers/UploadFileController.php
<?phpLangkah 4 - Tambahkan route di app/Http/routes.php.
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
class UploadFileController extends Controller {
public function index(){
return view('uploadfile');
}
public function showUploadFile(Request $request){
$file = $request->file('image');
//Display File Name
echo 'File Name: '.$file->getClientOriginalName();
echo '<br>';
//Display File Extension
echo 'File Extension: '.$file->getClientOriginalExtension();
echo '<br>';
//Display File Real Path
echo 'File Real Path: '.$file->getRealPath();
echo '<br>';
//Display File Size
echo 'File Size: '.$file->getSize();
echo '<br>';
//Display File Mime Type
echo 'File Mime Type: '.$file->getMimeType();
//Move Uploaded File
$destinationPath = 'uploads';
$file->move($destinationPath,$file->getClientOriginalName());
}
}
app/Http/routes.php
Route::get('/uploadfile','UploadFileController@index');Langkah 5 - Buka url:
Route::post('/uploadfile','UploadFileController@showUploadFile');
http://localhost:8000/uploadfile
Mudah bukan? terima kasih sudah mengikuti tutorial ini, Mudah-mudahan membantu bagi yang baru belajar laravel.
No comments:
Post a Comment