@extends('layouts.app') @section('content')

Profil Mahasiswa

Foto Profil

{{ Auth::user()->nama }}

NIM: {{ Auth::user()->nim }}

Prodi: {{ Auth::user()->prodi }}

Semester: {{ Auth::user()->semester }}

WhatsApp: {{ Auth::user()->whatsapp }}

Email: {{ Auth::user()->email }}

Instagram: {{ Auth::user()->instagram ?? 'Tidak ada' }}



Postingan Saya

@foreach($posts as $post)
Foto Profil {{ $post->user->nama }}

{{ $post->deskripsi }}

@if($post->foto) Postingan @endif
@csrf
{{ $post->likes->count() }}
@csrf
@foreach($post->comments as $comment)
{{ $comment->user->nama }}: {{ $comment->komentar }}
@endforeach
@endforeach
@endsection