Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. route::get('customer', function(){
  2. $customer = Appcustomer::find(1);
  3. echo $customer->name;
  4. });
  5.  
  6. APP_ENV=local
  7. APP_KEY=base64:YP84cuDiwIkv4iCqrEEWMQBdOklL2+coODVf9qB6HwY=
  8. APP_DEBUG=true
  9. APP_LOG_LEVEL=debug
  10. APP_URL=http://localhost
  11.  
  12. DB_CONNECTION=mysql
  13. DB_HOST=127.0.0.1
  14. DB_PORT=3306
  15. DB_DATABASE=laravel
  16. DB_USERNAME=root
  17. DB_PASSWORD=my password
  18.  
  19. CACHE_DRIVER=file
  20. SESSION_DRIVER=file
  21. QUEUE_DRIVER=sync
  22.  
  23. REDIS_HOST=127.0.0.1
  24. REDIS_PASSWORD=null
  25. REDIS_PORT=6379
  26.  
  27. MAIL_DRIVER=smtp
  28. MAIL_HOST=mailtrap.io
  29. MAIL_PORT=2525
  30. MAIL_USERNAME=null
  31. MAIL_PASSWORD=null
  32. MAIL_ENCRYPTION=null
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement