7-Blade

İlk önce sayfamızda tüm kullanıcıları listeleyelim ve user/username şeklinde bir rota vereceğiz

<!DOCTYPE HTML>
<html>
<head>
<title>Title of the document</title>
</head>

<body>
    <h1>Tüm kullanıcılar</h1>
    <br>
            @foreach($users as $user)
               <li> {{link_to("/users/{$user->email}",$user->email) }}</li>
             
          @endforeach
</body>
</html>


Routes.php de


Route::get('users/{username}',function($username){
  
    $user=User::where ('email',$username)->first();
    return View::make('kullanici.userdetay')->with('user',$user);
  
});

son olarakviews/kullanıcı klasöru altında userdetay.blade.php de

<h1>Hoşgeldiniz {{$user->email}}</h1>

Comments

Popular posts from this blog

Laravel Datatable