about.blade.php 851 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @extends('frontend.layouts.navBar')
  2. @section('content')
  3. <div class="page">
  4. <div class="container" style=" margin-bottom: 35px;
  5. margin-top: 200px;">
  6. <div style=" justify-content: left;
  7. display: flex;
  8. ">
  9. <h4 style="color:red">A propos de nous</h4>
  10. </div>
  11. <div class="row">
  12. @foreach($presentations as $presentation)
  13. <div class="col" style=" margin-top :20px;
  14. color: black; text-align: left;
  15. ">
  16. <p>
  17. {!! html_entity_decode($presentation->details)!!}
  18. </p>
  19. </div>
  20. <div class="col">
  21. <img src="{{ asset('storage/image/'.$presentation->image) }}" alt="description of myimage">
  22. </div>
  23. @endforeach
  24. </div>
  25. </div>
  26. </div>
  27. <style>
  28. .image-style-side {
  29. float: right;
  30. margin-left: var(--ck-image-style-spacing);
  31. max-width: 50%;
  32. }
  33. </style>
  34. @endsection