@extends('layout.index') @section('title', 'Yorumlar') @section('content')

Yorumlarım

@if(db('comment')->where('front_user_id', session()->get('front_login'))->count() == 0) Henüz yorum yapışmamış! @else @foreach(db('comment')->where('front_user_id', session()->get('front_login'))->get()->all() as $comment)

{{ $comment->comment }}

@endforeach @endif
@endsection