RelationshipSettings.php 385 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Http\Controllers\Settings;
  3. use App\AccountLog;
  4. use App\EmailVerification;
  5. use App\Instance;
  6. use App\Media;
  7. use App\Profile;
  8. use App\User;
  9. use App\UserFilter;
  10. use App\Util\Lexer\PrettyNumber;
  11. use Auth, Cache, DB;
  12. use Illuminate\Http\Request;
  13. trait RelationshipSettings
  14. {
  15. public function relationshipsHome()
  16. {
  17. return view('settings.relationships.home');
  18. }
  19. }