class Product extends Model
{
use HasFactory;
protected $fillable = ['name'];
public function categorys()
{
return $this->belongsTo(Category::class);
}
}
<a href="{% url 'detail' i.pk %}">ПОДРОБНЕЕ</a>
{% for i in data %}
<div class="p">
<h4 id="p"><b>НАЗВАНИЕ: </b>{{i.name}}</h4>
<h4><b>ЦЕНА: </b>{{i.price}}</h4>
<h4><b>КАТЕГОРИЯ: </b>{{i.category}}</h4>
<a href="{% url 'detail' id=i.id %}">ПОДРОБНЕЕ</a>
{% if i.is_recently %}
<h1 class="p">НЕДАВНО В ПРОДАЖЕ!</h1>
{% endif %}
<hr>
</div>
{% endfor %}