Almost complete site

Add dark / light theme

Add social sharing on meme pages

Add approving / pending admin section

Improve design

Add pagination on profiles

Make front end date time user friendly

Finish rough draft of site

And Much more...

Still need to fix a few minor things before it goes live. Almost
complete.
This commit is contained in:
dev 2021-07-26 19:39:11 -07:00
parent 52a9007882
commit dbfda5cf9e
39 changed files with 54195 additions and 663 deletions

View file

@ -4,13 +4,16 @@ namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\User;
use App\Models\Meme;
class UserController extends Controller
{
public function show($id)
{
$user = User::where('id', $id)->firstOrFail();
$data = [
'user' => User::with('memes')->where('id', $id)->firstOrFail(),
'user' => $user,
'memes' => Meme::where('user_id', $user->id)->orderByDesc('created_at')->paginate(20),
];
return view('profile', ['data' => $data]);
}