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

Размер файла: 5.6Kb
  1. @extends('layout')
  2.  
  3. @section('title', $offer->title)
  4.  
  5. @section('header')
  6. <div class="float-end">
  7. @if (getUser())
  8. @if (in_array($offer->status, ['wait', 'process']) && getUser('id') === $offer->user_id)
  9. <a class="btn btn-success" title="{{ __('main.edit') }}" href="/offers/edit/{{ $offer->id }}">{{ __('main.change') }}</a>
  10. @endif
  11.  
  12. @if (isAdmin())
  13. <a class="btn btn-light" href="/admin/offers/{{ $offer->id }}"><i class="fas fa-wrench"></i></a>
  14. @endif
  15. @endif
  16. </div>
  17.  
  18. <h1>{{ $offer->title }}</h1>
  19. @stop
  20.  
  21. @section('breadcrumb')
  22. <nav>
  23. <ol class="breadcrumb">
  24. <li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
  25. <li class="breadcrumb-item"><a href="/offers/{{ $offer->type }}">{{ __('index.offers') }}</a></li>
  26. <li class="breadcrumb-item active">{{ $offer->title }}</li>
  27. </ol>
  28. </nav>
  29. @stop
  30.  
  31. @section('content')
  32. <div class="mb-3">
  33. <div class="section-content">
  34. <div class="section-message">
  35. {{ bbCode($offer->text) }}
  36. </div>
  37. </div>
  38.  
  39. <div class="section-body">
  40. {{ __('main.added') }}: {{ $offer->user->getProfile() }}
  41. <small class="section-date text-muted fst-italic">{{ dateFixed($offer->created_at) }}</small>
  42.  
  43. <div class="my-3">
  44. {{ $offer->getStatus() }}
  45. </div>
  46.  
  47. <div class="js-rating">
  48. {{ __('main.rating') }}:
  49. @if (getUser() && getUser('id') !== $offer->user_id)
  50. <a class="post-rating-down{{ $offer->vote === '-' ? ' active' : '' }}" href="#" onclick="return changeRating(this);" data-id="{{ $offer->id }}" data-type="{{ $offer->getMorphClass() }}" data-vote="-" data-token="{{ csrf_token() }}"><i class="fa fa-arrow-down"></i></a>
  51. @endif
  52. <b>{{ formatNum($offer->rating) }}</b>
  53. @if (getUser() && getUser('id') !== $offer->user_id)
  54. <a class="post-rating-up{{ $offer->vote === '+' ? ' active' : '' }}" href="#" onclick="return changeRating(this);" data-id="{{ $offer->id }}" data-type="{{ $offer->getMorphClass() }}" data-vote="+" data-token="{{ csrf_token() }}"><i class="fa fa-arrow-up"></i></a>
  55. @endif
  56. </div>
  57. </div>
  58. </div>
  59.  
  60. @if ($offer->reply)
  61. <div class="section mb-3 shadow">
  62. <h5>{{ __('offers.official_response') }}</h5>
  63. <div class="section-message">
  64. {{ bbCode($offer->reply) }}<br>
  65. {{ $offer->replyUser->getProfile() }}
  66. <small class="section-date text-muted fst-italic">{{ dateFixed($offer->updated_at) }}</small>
  67. </div>
  68. </div>
  69. @endif
  70.  
  71. @if ($offer->lastComments->isNotEmpty())
  72. <h5><i class="fa fa-comment"></i> {{ __('main.last_comments') }}</h5>
  73.  
  74. @foreach ($offer->lastComments(5)->get() as $comment)
  75. <div class="section mb-3 shadow">
  76. <div class="user-avatar">
  77. {{ $comment->user->getAvatar() }}
  78. {{ $comment->user->getOnline() }}
  79. </div>
  80.  
  81. <div class="section-user d-flex align-items-center">
  82. <div class="flex-grow-1">
  83. {{ $comment->user->getProfile() }}
  84.  
  85. <small class="section-date text-muted fst-italic">{{ dateFixed($comment->created_at) }}</small><br>
  86. <small class="fst-italic">{{ $comment->user->getStatus() }}</small>
  87. </div>
  88. </div>
  89.  
  90. <div class="section-body border-top">
  91. <div class="section-message">
  92. {{ bbCode($comment->text) }}<br>
  93. @if (isAdmin())
  94. <div class="small text-muted fst-italic mt-2">{{ $comment->brow }}, {{ $comment->ip }}</div>
  95. @endif
  96. </div>
  97. </div>
  98. </div>
  99. @endforeach
  100.  
  101. <div class="p-3 mb-3 shadow">
  102. <i class="fas fa-comments"></i> <b><a href="/offers/comments/{{ $offer->id }}">{{ __('main.all_comments') }}</a></b> ({{ $offer->count_comments }})
  103. <a href="/offers/end/{{ $offer->id }}">&raquo;</a>
  104. </div>
  105. @endif
  106.  
  107. @if (! $offer->closed)
  108. @if ($offer->lastComments->isEmpty())
  109. {{ showError(__('main.empty_comments')) }}
  110. @endif
  111.  
  112. @if (getUser())
  113. <div class="section-form mb-3 shadow">
  114. <form action="/offers/comments/{{ $offer->id }}" method="post">
  115. @csrf
  116. <div class="mb-3{{ hasError('msg') }}">
  117. <label for="msg" class="form-label">{{ __('main.message') }}:</label>
  118. <textarea class="form-control markItUp" maxlength="{{ setting('comment_length') }}" id="msg" rows="5" name="msg" required>{{ getInput('msg') }}</textarea>
  119. <div class="invalid-feedback">{{ textError('msg') }}</div>
  120. <span class="js-textarea-counter"></span>
  121. </div>
  122.  
  123. <button class="btn btn-primary">{{ __('main.write') }}</button>
  124. </form>
  125. </div>
  126.  
  127. <a href="/rules">{{ __('main.rules') }}</a> /
  128. <a href="/stickers">{{ __('main.stickers') }}</a> /
  129. <a href="/tags">{{ __('main.tags') }}</a><br><br>
  130. @else
  131. {{ showError(__('main.closed_comments')) }}
  132. @endif
  133. @else
  134. {{ showError(__('main.not_authorized')) }}
  135. @endif
  136. @stop