Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. shto ne HomeController.php
  2. public function showAbout()
  3. {
  4. $personArray = ['Arlindi', 'osht', 'shume', 'i qarte'];
  5. return View::make('about', compact('personArray'));
  6. }
  7.  
  8. ne views folder-in krijo ni file about.blade.php edhe shto qito
  9.  
  10. <h1>About Page!</h1>
  11.  
  12. @foreach ($personArray as $person)
  13. {{ $person }}
  14. @endforeach
  15.  
  16. ne routes.php shto qit line
  17. Route::get('about-us', 'HomeController@showAbout');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement