Просмотр файла resources/views/forums/print.blade.php

Размер файла: 491B
@extends('layout_simple')

@section('title', $topic->title)

@section('description', $description)

@section('content')
    <h1>{{ $topic->title }}</h1>

    @foreach ($posts as $key => $data)
        {{ $key + 1 }}. <b>{{ $data->user->getName() }}</b> ({{ dateFixed($data->created_at) }})<br>
        {{ bbCode($data->text) }}
        <br><br>
    @endforeach

    URL: <a href="{{ route('topics.topic', ['id' => $topic->id]) }}">{{ route('topics.topic', ['id' => $topic->id]) }}</a>
@stop