2023-06-18 14:26:27 +00:00
|
|
|
[builderList]
|
|
|
|
|
modelClass = "Romanah\Bagisto\Models\Brand"
|
|
|
|
|
scope = "-"
|
|
|
|
|
scopeValue = "{{ :scope }}"
|
|
|
|
|
displayColumn = "id"
|
|
|
|
|
noRecordsMessage = "No records found"
|
|
|
|
|
detailsPage = "-"
|
|
|
|
|
detailsUrlParameter = "id"
|
|
|
|
|
pageNumber = "{{ :page }}"
|
|
|
|
|
==
|
|
|
|
|
{% set records = builderList.records %}
|
|
|
|
|
{% set displayColumn = builderList.displayColumn %}
|
|
|
|
|
{% set noRecordsMessage = builderList.noRecordsMessage %}
|
|
|
|
|
{% set detailsPage = builderList.detailsPage %}
|
|
|
|
|
{% set detailsKeyColumn = builderList.detailsKeyColumn %}
|
|
|
|
|
{% set detailsUrlParameter = builderList.detailsUrlParameter %}
|
|
|
|
|
|
|
|
|
|
|
2023-06-17 20:52:33 +00:00
|
|
|
<!-- BRAND LOGO AREA START -->
|
|
|
|
|
<div class="ltn__brand-logo-area ltn__brand-logo-1 section-bg-1 pt-35 pb-35 plr--5">
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
<div class="row ltn__brand-logo-active">
|
|
|
|
|
|
2023-06-18 14:26:27 +00:00
|
|
|
{% for record in records %}
|
|
|
|
|
{% partial "home/brand-item" img=record.img %}
|
|
|
|
|
{% endfor %}
|
2023-06-17 20:52:33 +00:00
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-06-18 14:26:27 +00:00
|
|
|
<!-- BRAND LOGO AREA END -->
|