26 lines
		
	
	
		
			723 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			723 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers;
 | 
						|
 | 
						|
use App\Ejaculation;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
 | 
						|
class TimelineController extends Controller
 | 
						|
{
 | 
						|
    public function showPublic()
 | 
						|
    {
 | 
						|
        $ejaculations = Ejaculation::join('users', 'users.id', '=', 'ejaculations.user_id')
 | 
						|
            ->where('users.is_protected', false)
 | 
						|
            ->where('ejaculations.is_private', false)
 | 
						|
            ->where('ejaculations.link', '<>', '')
 | 
						|
            ->orderBy('ejaculations.ejaculated_date', 'desc')
 | 
						|
            ->select('ejaculations.*')
 | 
						|
            ->with('user', 'tags')
 | 
						|
            ->withLikes()
 | 
						|
            ->onlyWebCheckin()
 | 
						|
            ->paginate(21);
 | 
						|
 | 
						|
        return view('timeline.public')->with(compact('ejaculations'));
 | 
						|
    }
 | 
						|
}
 |