Guest User

Untitled

a guest
Jun 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2.  
  3. namespace AppHttpControllers;
  4.  
  5. use IlluminateHttpRequest;
  6.  
  7. class SiteController extends Controller
  8. {
  9. public function index(){
  10. $teste1 = 1;
  11. $bs = 12;
  12. return view('site.Home.index', ['teste'=>$teste1] );
  13. }
  14. }
  15.  
  16. @extends('/site.Templede.templede1')
  17. @section('title')
  18. teste
  19. @endsection
  20.  
  21. @section('body')
  22. {{$teste1}}
  23. ss
  24. @endsection
  25.  
  26. @section('foot')
  27. footer
  28. @endsection
Add Comment
Please, Sign In to add comment