spam.blade.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container mt-4 mb-5 pb-5">
  4. <div class="col-12 col-md-8 offset-md-2">
  5. <div class="card">
  6. <div class="card-header lead font-weight-bold">
  7. Report Spam
  8. </div>
  9. <div class="card-body">
  10. <div class="p-5 text-center">
  11. <p class="lead">Please select one of the following options.</p>
  12. </div>
  13. <div class="row">
  14. @switch(request()->query('type'))
  15. @case('comment')
  16. <div class="col-12 col-md-8 offset-md-2 mb-3">
  17. <p><a class="btn btn-light btn-block p-4 font-weight-bold" href="{{route('report.spam.comment')}}">
  18. This comment contains spam
  19. </a></p>
  20. </div>
  21. @break
  22. @case('post')
  23. <div class="col-12 col-md-8 offset-md-2 mb-3">
  24. <p><a class="btn btn-light btn-block p-4 font-weight-bold" href="{{route('report.spam.post')}}">
  25. This post contains spam
  26. </a></p>
  27. </div>
  28. @break
  29. @case('user')
  30. <div class="col-12 col-md-8 offset-md-2 mb-3">
  31. <p><a class="btn btn-light btn-block p-4 font-weight-bold" href="{{route('report.spam.profile')}}">
  32. This users profile contains spam
  33. </a></p>
  34. </div>
  35. @break
  36. @endswitch
  37. <div class="col-12 col-md-8 offset-md-2 my-3">
  38. <p><a class="font-weight-bold" href="#">
  39. Learn more
  40. </a> about our reporting guidelines and policy.</p>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. @endsection