Skip to content

Commit db16c5a

Browse files
Another changes to contributing page
Signed-off-by: IsaacPimentel73 <[email protected]>
1 parent 53ee46c commit db16c5a

File tree

2 files changed

+19
-20
lines changed

2 files changed

+19
-20
lines changed

config.php

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -107,17 +107,15 @@
107107
'author' => 'Daiane Alves'
108108
]
109109
],
110-
'donatevalues'=>[
110+
'coindonate'=>[
111111
[
112-
'coin'=>"BRL - BRAZILIAN REAL",
113-
'value'=> <<<LIST
114-
"1200","120","600","350","170","55"
115-
LIST
116-
],
117-
[
118-
'coin'=>"USD - NORTH-AMERICAN DOLAR",
119-
'value'=> ["1200","120","600","350","170","55"]
120-
],
112+
'BRL'=>"BRL - BRAZILIAN REAL",
113+
'USD'=>"USD - NORTH-AMERICAN DOLAR",
114+
],
115+
],
116+
'donatevalues'=>[ [
117+
'value'=> [1200,120,600,350,170,55]
118+
],
121119
],
122120
'getFromCategory' => function($page, $category) {
123121
$files = array_merge(

source/contributing.blade.php

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -76,26 +76,27 @@ class="shape shape-1"
7676
</nav>
7777
<div class="tab-content " id="nav-tabContent" >
7878
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
79-
<div class="row mt-5 justify-content-center">
80-
@foreach($page->donatevalues as $item => $value )
81-
<div class="col-3">
82-
<button type="button" class="btn btn-outline-success">{{$item->value}}</button>
83-
84-
</div>
79+
<div class="row mt-5 "style=" background-color:gray;width:600;height:130"> <!--style="margin-right:140; margin-left:140"-->
80+
@foreach($page->donatevalues as $item )
81+
@foreach($item['value'] as $option)
82+
<div class="col-2 mb-3" style="width:80px;" >
83+
<a type="button" class="btn btn-outline-success "style=" padding: 20px 20px 0px 20px ;width:100" >{{$option}}</a>
84+
85+
</div>
86+
@endforeach
8587
@endforeach
86-
8788
</div>
8889

8990
</div>
9091
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
9192
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
9293
<div class="row mt-5 justify-content-center">
93-
@foreach($page->donatevalues as $item -> $value)
94+
9495
<div class="col-3">
95-
<button type="button" class="btn btn-outline-success">{{$item->value}}</button>
96+
<button type="button" class="btn btn-outline-success"></button>
9697

9798
</div>
98-
@endforeach
99+
99100

100101
</div>
101102

0 commit comments

Comments
 (0)