8-Master Sayfalar
Master.blade.php(views/layout/ altında)
<!DOCTYPE HTML>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
@yield('content')
<br>
</body>
</html>
users.blade.php
@extends('layout.master')
@section('content')
<h1>Tüm kullanıcılar</h1>
<br>
@foreach($users as $user)
<li> {{link_to("/users/{$user->email}",$user->email) }}</li>
@endforeach
@stop
<!DOCTYPE HTML>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
@yield('content')
<br>
</body>
</html>
users.blade.php
@extends('layout.master')
@section('content')
<h1>Tüm kullanıcılar</h1>
<br>
@foreach($users as $user)
<li> {{link_to("/users/{$user->email}",$user->email) }}</li>
@endforeach
@stop
Comments
Post a Comment