mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			39 lines
		
	
	
		
			737 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			39 lines
		
	
	
		
			737 B
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers;
 | 
						|
 | 
						|
use Illuminate\Http\Request;
 | 
						|
 | 
						|
class ReportController extends Controller
 | 
						|
{
 | 
						|
    public function showForm(Request $request)
 | 
						|
    {
 | 
						|
      return view('report.form');
 | 
						|
    }
 | 
						|
 | 
						|
    public function notInterestedForm(Request $request)
 | 
						|
    {
 | 
						|
      return view('report.not-interested');
 | 
						|
    }
 | 
						|
 | 
						|
    public function spamForm(Request $request)
 | 
						|
    {
 | 
						|
      return view('report.spam');
 | 
						|
    }
 | 
						|
 | 
						|
    public function spamCommentForm(Request $request)
 | 
						|
    {
 | 
						|
      return view('report.spam.comment');
 | 
						|
    }
 | 
						|
 | 
						|
    public function spamPostForm(Request $request)
 | 
						|
    {
 | 
						|
      return view('report.spam.post');
 | 
						|
    }
 | 
						|
 | 
						|
    public function spamProfileForm(Request $request)
 | 
						|
    {
 | 
						|
      return view('report.spam.profile');
 | 
						|
    }
 | 
						|
}
 |