From 1dfa2317b467fe1e9089e54fd6d5757c611c23d7 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Tue, 29 May 2018 20:31:04 -0600 Subject: [PATCH] Add public timeline view --- resources/views/timeline/public.blade.php | 53 +++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 resources/views/timeline/public.blade.php diff --git a/resources/views/timeline/public.blade.php b/resources/views/timeline/public.blade.php new file mode 100644 index 00000000..94488429 --- /dev/null +++ b/resources/views/timeline/public.blade.php @@ -0,0 +1,53 @@ +@extends('layouts.app') + +@push('scripts') + +@endpush + +@section('content') + +
+
+ @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif +
+
New Post
+
+
+ @csrf +
+ + +
+
+ + +
+ +
+
+
+ +
+ @foreach($timeline as $item) + + @include('status.template') + + @endforeach +
+
+ {{$timeline->links()}} +
+ +
+
+ + +@endsection \ No newline at end of file