Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. // views/faq.blade.php
  4.  
  5. @if(App::getLocale() == 'fa')
  6.  
  7.     @include('fa.faq.blade.php')
  8. @else
  9.  
  10.     @include('en.faq.blade.php')
  11.  
  12. @endif
  13.  
  14.  
  15.  
  16.  
  17. // views/fa.faq.blade.php
  18. سوالات متداول
  19.  
  20.  
  21. //views/en.faq.blade.php
  22. FAQ
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement