Advertisement
Guest User

Untitled

a guest
Aug 19th, 2014
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. App::before(function($request)
  2. {
  3. $alloptions = Option::all();
  4. $options = array();
  5. foreach ($alloptions as $option) {
  6. $options[$option['option_id']] = $option;
  7. }
  8. View::share('websiteTitle', $options['website_title']['value']);
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement