Advertisement
Device-Cheat

php

Apr 22nd, 2020
451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. // base.blade.php
  2. <html>
  3. <head>
  4.     <style></style>
  5.     <title>@section('page-title')
  6.             Projekt z przedmiotu Technologie Obiektowe
  7.         @show
  8.     </title>
  9. </head>
  10. <body>
  11. <div class="container">
  12.     <h1>@yield('title')</h1>
  13.     <div class="row">
  14.         @yield('content')
  15.     </div>
  16. </div>
  17. </body>
  18. </html>
  19.  
  20. // post.blade.php
  21. @extends('base')
  22.  
  23. @section('page-title')Wpis {{ $post->title }}
  24.  
  25. @section('title'){{ $post->title }}@endsection
  26.  
  27. @section('content')
  28.     {{ $post->content }}
  29. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement