index.blade.php 824 B

1234567891011121314151617181920212223242526272829
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container">
  4. @foreach($posts as $post)
  5. <div class="row">
  6. <div class="col-6 offset-3">
  7. <a href="/profile/{{ $post->user->id }}">
  8. <img src="/storage/{{ $post->image }}" class="w-100">
  9. </a>
  10. </div>
  11. </div>
  12. <div class="row pt-2 pb-4">
  13. <div class="col-6 offset-3">
  14. <div>
  15. <p>
  16. <span class="font-weight-bold">
  17. <a href="/profile/{{ $post->user->id }}">
  18. <span class="text-dark">{{ $post->user->username }}</span>
  19. </a>
  20. </span> &nbsp; {{ $post->caption }}
  21. </p>
  22. </div>
  23. </div>
  24. </div>
  25. @endforeach
  26. </div>
  27. @endsection