ソースを参照

Add RelationshipSettings trait

Daniel Supernault 6 年 前
コミット
bf8340ff9d
1 ファイル変更24 行追加0 行削除
  1. 24 0
      app/Http/Controllers/Settings/RelationshipSettings.php

+ 24 - 0
app/Http/Controllers/Settings/RelationshipSettings.php

@@ -0,0 +1,24 @@
+<?php
+
+namespace App\Http\Controllers\Settings;
+
+use App\AccountLog;
+use App\EmailVerification;
+use App\Instance;
+use App\Media;
+use App\Profile;
+use App\User;
+use App\UserFilter;
+use App\Util\Lexer\PrettyNumber;
+use Auth, Cache, DB;
+use Illuminate\Http\Request;
+
+trait RelationshipSettings
+{
+
+	public function relationshipsHome()
+	{
+		return view('settings.relationships.home');
+	}
+
+}