12 lines
379 B
PHP
12 lines
379 B
PHP
<ul style="list-style: none;">
|
|
@foreach($datas as $data)
|
|
<li>
|
|
<div style="display: flex; justify-content: center;align-content: center;align-items: center;">
|
|
<img src="{{ './storage/'.$data['image'] }}" style="width: 100%;max-width: 380px;" alt="">
|
|
<span style="margin-left: 20px;">Sany: {{ $data['quantity'] }}</span>
|
|
</div>
|
|
</li>
|
|
<hr />
|
|
@endforeach
|
|
</ul>
|