Posts

Showing posts with the label Komutlar

URL::to() komutu

özellikle blade.php lerde css ve javascriptleri çağırıken şu komutu kullanabiliriz. {{ URL::to('') }} mesela <link rel="stylesheet" href="{{ URL::to('Backend/bootstrap/css/bootstrap.min.css') }}" media="screen">

Route::get() komutu kullanımı

routes.php de Kod: Route::get('/ilk', function() { return View::make('hello'); }); yazarsak adres satırında ilk açılıs sayfası hello.php olur.hello.php view klasorunun altında yer almalı. Kod: Route::get('/', 'HomeController@showWelcome'); yazarsak controllers altında bulunan homecontroller sayfasının showwelcome fonksiyonunu calıştırır. showWelcome fonksiyonunu söyle olusturuyoruz Kod: public function showWelcome() { return View::make('hello'); } } /* hello.php sayfasını ekrana bas*/, Kod: Route:get('admin','Backend_LoginController@login');  ifadesinin türkçesi http://localhost/admin şeklinde adres satırından bir istek gelirse Backend klasöründeki LoginController.php deki login fonksiyonunu çalıştır.

Hash::make() komutu

$sifre=Hash::make('123456');  //123456 yı şifreliyor dd($sifre);  //echo(123456 nın şifreli hali ve exit işine yarıyor)