Dostlar ilginç ötesi bir durumla karşı karşıyayım. Laravel'de route tanımım şu linkteki gibi:
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the Closure to execute when that URI is requested.
|
*/
Route::get('/', function()
{
return "deneme";
});
normal olarak beklentim "deneme" kelimesini laravel projeme girdiğimde görmem. ama gelin görün ki boş bir sayfa çıkıyor. route'ta "deneme" kelimesini return ile döndürmede bir sorun var sanırsam. echo ile direk yazdırdığımda sorunsuz çalışıyor. aynı şey view'lar içinde geçerli. bu arada pretty url, mod_rewrite vs sorunsuz çalışıyor.