2018-05-30 02:31:04 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@push('scripts')
|
|
|
|
<script type="text/javascript" src="{{mix('js/timeline.js')}}"></script>
|
|
|
|
@endpush
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="col-12 col-md-8 offset-md-2 pt-4">
|
|
|
|
@if ($errors->any())
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
<ul>
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<li>{{ $error }}</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
@endif
|
2018-06-02 22:53:35 +00:00
|
|
|
|
|
|
|
@include('timeline.partial.new-form')
|
2018-05-30 02:31:04 +00:00
|
|
|
|
|
|
|
<div class="timeline-feed my-5" data-timeline="public">
|
|
|
|
@foreach($timeline as $item)
|
|
|
|
|
|
|
|
@include('status.template')
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-center">
|
|
|
|
{{$timeline->links()}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2018-06-01 07:48:32 +00:00
|
|
|
@endsection
|