Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @extends('layouts.template')
  2. @section('tytul','Lista studentów')
  3.  
  4. @section('menu')
  5. @parent
  6. <ul>
  7. <li>Dodanie studenta</li>
  8. </ul>
  9. @endsection
  10.  
  11. @section('content')
  12. <h3>Student dodany do bazy danych </h3>
  13.  
  14. <ul>
  15. <li>Imię: {{ $imie }}</li>
  16. <li>Nazwisko: {{ $nazwisko }}</li>
  17. <li>Numer indeksu: {{ $nr_indeksu }}</li>
  18. </ul>
  19.  
  20. <a href="{{ route('student.index') }}">Powrót</a>
  21. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement