Skip to content

Commit a26281e

Browse files
authored
Merge pull request #334 from dbarzin/dev
Dev
2 parents b38b885 + f1d444a commit a26281e

File tree

133 files changed

+4817
-285745
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+4817
-285745
lines changed

app/Calendar.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ public function __toString()
3737
$html .= date('m/Y', strtotime('-1 month', $this->date));
3838
$html .= '" ';
3939
$html .= 'style="font-size: 30px; text-decoration: none"';
40-
$html .= '>&lt;&lt;</a> &nbsp; ';
40+
$html .= '>';
41+
$html .= '<span class="mif-backward"></span>';
42+
$html .= '</a> &nbsp; ';
4143
$html .= '</div>';
4244
$html .= '<div class="col">';
4345

@@ -62,7 +64,9 @@ public function __toString()
6264
$html .= date('m/Y', strtotime('+1 month', $this->date));
6365
$html .= '" ';
6466
$html .= 'style="font-size: 30px; text-decoration: none"';
65-
$html .= '>&gt&gt;</a>';
67+
$html .= '>';
68+
$html .= '<span class="mif-forward"></span>';
69+
$html .= '</a>';
6670
$html .= '</div>';
6771
$html .= '</div>';
6872
$html .= '</div>';

app/Http/Controllers/HomeController.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,9 @@ private function getExpandedControls()
205205
return $expanded;
206206
});
207207
}
208+
209+
public function test(Request $request) {
210+
return view('test');
211+
}
212+
208213
}

0 commit comments

Comments
 (0)