Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. use IlluminateSupportFacadesSession;
  3. namespace AppCustomLibrary
  4.  
  5. {
  6. class myFunctions {
  7. public function is_login() {
  8. if(Session::get('id') != null){
  9.  
  10. return TRUE;
  11. }
  12. }
  13. }
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement