Просмотр файла resources/views/stories/create.php

Размер файла: 983B
  1. <?php
  2.  
  3. use App\Models\File;
  4. use MotorORM\Collection;
  5.  
  6. /** @var Collection<File> $files */
  7. ?>
  8. <?php $this->layout('layout') ?>
  9.  
  10. <?php $this->start('title') ?>Добавление статьи<?php $this->stop() ?>
  11.  
  12. <?php $this->start('breadcrumb') ?>
  13. <nav>
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item"><a href="/"><i class="bi bi-house-door"></i></a></li>
  16. <li class="breadcrumb-item"><a href="<?= route('stories') ?>">Статьи</a></li>
  17. <li class="breadcrumb-item active">Добавление</li>
  18. </ol>
  19. </nav>
  20. <?php $this->stop() ?>
  21.  
  22. <?php if(setting('story.allow_posting') || isAdmin()): ?>
  23. <?= $this->fetch('stories/_form', ['files' => $files, 'template' => $this]) ?>
  24. <?php else: ?>
  25. <div class="alert alert-danger">
  26. <i class="bi bi-exclamation-circle-fill text-danger"></i>
  27. Публикация статей запрещена администратором!
  28. </div>
  29. <?php endif; ?>