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.
13 lines
323 B
PHTML
13 lines
323 B
PHTML
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="app">
|
|
<div class="container">
|
|
@guest
|
|
<thread-view thread_id="<?php echo $thread_id; ?>" with="false">
|
|
@else
|
|
<thread-view user_id="{{ Auth::user()->id }}" thread_id="<?php echo $thread_id; ?>" with="true">
|
|
@endguest
|
|
</div>
|
|
</div>
|
|
@endsection
|