2-Route ile değişken taşıma
Routes.php
Route::get('/',  function(){
    $deg1='nası bi oyun';
    $deg2='babaaaa';
    $deg3='lüfen';
    
    return View::make('hello')->with('deg1',$deg1)->with('deg2',$deg2)->with('deg3',$deg3);
    
} );
Comments
Post a Comment