Skip to content

Commit

Permalink
bootstrap catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
yelypk committed Aug 26, 2024
1 parent 47e3347 commit 5b4cf1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/catalog.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
@foreach ($goods as $good)
<div class="col-sm-6 col-lg-4 mb-4">
<div class="card">
<img src="{{$good->image}}$" class="card-img-top" alt="{{$good->name}}$">
<img src="{{$good->image}}" class="card-img-top" alt="{{$good->name}}">
<div class="card-body">
<h5 class="card-title">{{$good->name}}</h5>
<h6 class="card-subtitle mb-2 text-body-secondary">price:{{$good->price}}$</h6>
<p class="card-text">{{$good->description}}$</p>
<p class="card-text">{{$good->description}}</p>
</div>
</div>
</div>
Expand Down

0 comments on commit 5b4cf1f

Please sign in to comment.