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