12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @extends('frontend.layouts.navBar')
- @section('content')
- <div class="page">
- <div class="container" style=" margin-bottom: 35px;
- margin-top: 200px;">
- <div style=" justify-content: left;
- display: flex;
- ">
- <h4 style="color:red">A propos de nous</h4>
- </div>
- <div class="row">
- @foreach($presentations as $presentation)
- <div class="col" style=" margin-top :20px;
- color: black; text-align: left;
- ">
- <p>
- {!! html_entity_decode($presentation->details)!!}
- </p>
- </div>
- <div class="col">
- <img src="{{ asset('storage/image/'.$presentation->image) }}" alt="description of myimage">
- </div>
- @endforeach
- </div>
- </div>
- </div>
- <style>
- .image-style-side {
- float: right;
- margin-left: var(--ck-image-style-spacing);
- max-width: 50%;
- }
- </style>
- @endsection
|