Benjamin Völkl 2022-09-04 20:49:58 +02:00
parent 5404339b00
commit a6e55e7ffd
2 changed files with 31 additions and 8 deletions

View File

@ -2,11 +2,8 @@
<project version="4"> <project version="4">
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="63513c45-0a61-435e-8541-3831c195f7c0" name="Changes" comment=""> <list default="true" id="63513c45-0a61-435e-8541-3831c195f7c0" name="Changes" comment="">
<change afterPath="$PROJECT_DIR$/content/lists/pv-brands.blade.php" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/content/contents/solarmodule.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/contents/solarmodule.blade.php" afterDir="false" /> <change beforePath="$PROJECT_DIR$/content/contents/solarmodule.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/contents/solarmodule.blade.php" afterDir="false" />
<change beforePath="$PROJECT_DIR$/content/index.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/index.blade.php" afterDir="false" />
<change beforePath="$PROJECT_DIR$/content/lists/produkte.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/lists/produkte.blade.php" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -44,8 +41,8 @@
</component> </component>
<component name="RecentsManager"> <component name="RecentsManager">
<key name="CopyFile.RECENT_KEYS"> <key name="CopyFile.RECENT_KEYS">
<recent name="$PROJECT_DIR$/content/pages" />
<recent name="$PROJECT_DIR$/content/lists" /> <recent name="$PROJECT_DIR$/content/lists" />
<recent name="$PROJECT_DIR$/content/pages" />
<recent name="$PROJECT_DIR$/content/contents" /> <recent name="$PROJECT_DIR$/content/contents" />
</key> </key>
</component> </component>
@ -63,7 +60,7 @@
<workItem from="1662027309116" duration="11385000" /> <workItem from="1662027309116" duration="11385000" />
<workItem from="1662115692620" duration="1346000" /> <workItem from="1662115692620" duration="1346000" />
<workItem from="1662283223529" duration="4523000" /> <workItem from="1662283223529" duration="4523000" />
<workItem from="1662312260637" duration="2484000" /> <workItem from="1662312260637" duration="4081000" />
</task> </task>
<servers /> <servers />
</component> </component>

View File

@ -63,16 +63,16 @@
</thead> </thead>
<tbody> <tbody>


@isset($content->price_5) @isset($content->preis_5)
<tr> <tr>
<td>ab 5 Stck.</td> <td>ab 5 Stück</td>
<td>{{$content->data_fields['preis_5']}} €</td> <td>{{$content->data_fields['preis_5']}} €</td>
</tr> </tr>
@endisset @endisset


@isset($content->price_10) @isset($content->price_10)
<tr> <tr>
<td>ab 5 Stck.</td> <td>ab 5 Stück</td>
<td>{{$content->data_fields['preis_10']}} €</td> <td>{{$content->data_fields['preis_10']}} €</td>
</tr> </tr>
@endisset @endisset
@ -91,10 +91,36 @@
</div> </div>
@endisset @endisset


<table class="table">

<tbody>

@isset($content->data_fields['hersteller'])
<tr>
<td>Hersteller</td>
<td>{{$content->data_fields['hersteller']}}</td>
</tr>
@endisset

@isset($content->data_fields['leistung_(watt)'])
<tr>
<td>Leisung:</td>
<td>{{$content->data_fields['leistung_(watt)']}} Watt</td>
</tr>
@endisset

<tr>
<td>Zellstruktur:</td>
<td>Monokristalin</td>
</tr>








</tbody>
</table>






<div class="row mt-5"> <div class="row mt-5">