4-İndirme cevapları Get link Facebook X Pinterest Email Other Apps October 31, 2014 <?php 2 3 // app/routes.php 4 5 Route::get('dosya/indir', function() 6 { 7 $dosya = 'kartalgolgolgol.mp3'; 8 return Response::download($dosya); 9 }); Get link Facebook X Pinterest Email Other Apps Comments
Debug modunu açma kapama October 16, 2014 Hatalarımızı görme açısında localde çalışırken hata modunu açmak isteyebiliriz. Bunun için config içerisinde app.php de 'debug' => true, yapıyoruz Read more
The encryption key must be a random string. hatası December 21, 2014 Laravel güncellemesinden sonra şöyle bir hata aldım. The encryption key must be a random string. Komut satırına şunu yazıyoruz php artisan key:generate --env= local oluşan kodu app.phpde 'key' => '-----------', kısmına yapıştırıyoruz Read more
Comments
Post a Comment