2017-11-03 20:38:09 +09:00
|
|
|
@extends('layouts.base')
|
|
|
|
|
2019-01-08 23:27:48 +09:00
|
|
|
@section('title', 'お知らせ')
|
|
|
|
|
2017-11-03 20:38:09 +09:00
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
<h2>サイトからのお知らせ</h2>
|
|
|
|
<hr>
|
|
|
|
<div class="list-group">
|
|
|
|
@foreach($informations as $info)
|
|
|
|
<a class="list-group-item border-bottom-only pt-3 pb-3" href="{{ route('info.show', ['id' => $info->id]) }}">
|
2019-02-08 23:45:25 +09:00
|
|
|
@if ($info->pinned)
|
|
|
|
<span class="badge badge-secondary"><span class="oi oi-pin"></span>ピン留め</span>
|
|
|
|
@endif
|
2017-11-03 20:38:09 +09:00
|
|
|
<span class="badge {{ $categories[$info->category]['class'] }}">{{ $categories[$info->category]['label'] }}</span> {{ $info->title }} <small class="text-secondary">- {{ $info->created_at->format('n月j日') }}</small>
|
|
|
|
</a>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
2019-02-16 23:26:09 +09:00
|
|
|
{{ $informations->links(null, ['className' => 'mt-4 justify-content-center']) }}
|
2017-11-03 20:38:09 +09:00
|
|
|
</div>
|
|
|
|
@endsection
|