Compare commits
1 commit
develop
...
moiety/fon
Author | SHA1 | Date | |
---|---|---|---|
0849830be2 |
10 changed files with 9 additions and 20 deletions
|
@ -30,13 +30,10 @@ class ExportController extends Controller
|
||||||
}
|
}
|
||||||
array_push($list, ["heatRating" => $rating, "ratingCount" => $count]);
|
array_push($list, ["heatRating" => $rating, "ratingCount" => $count]);
|
||||||
}
|
}
|
||||||
return view(
|
return view('front.exports', [
|
||||||
'front.exports',
|
'title' => "Exports",
|
||||||
[
|
'list' => $list
|
||||||
'title' => "Exports",
|
]);
|
||||||
'list' => $list
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -80,7 +77,7 @@ class ExportController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
header('Content-Type: text/csv');
|
header('Content-Type: text/csv');
|
||||||
header('Content-Disposition: attachment; filename=' . $type . "-" . $percent . ".csv");
|
header('Content-Disposition: attachment; filename=' . $type . "-" . $percent);
|
||||||
|
|
||||||
echo implode(',', $columns) . PHP_EOL;
|
echo implode(',', $columns) . PHP_EOL;
|
||||||
foreach ($list as $item) {
|
foreach ($list as $item) {
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,36 +1,28 @@
|
||||||
/* RUBIK */
|
/* RUBIK */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: rubik;
|
font-family: rubik;
|
||||||
src: url("fonts/Rubik/rubik-light.ttf") format("truetype"),
|
src: url("fonts/Rubik/rubik-light.woff2") format("woff2");
|
||||||
url("fonts/Rubik/rubik-light.woff") format("woff"),
|
|
||||||
url("fonts/Rubik/rubik-light.woff2") format("woff2");
|
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: rubik;
|
font-family: rubik;
|
||||||
src: url("fonts/Rubik/rubik-regular.ttf") format("truetype"),
|
src: url("fonts/Rubik/rubik-regular.woff2") format("woff2");
|
||||||
url("fonts/Rubik/rubik-regular.woff") format("woff"),
|
|
||||||
url("fonts/Rubik/rubik-regular.woff2") format("woff2");
|
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: rubik;
|
font-family: rubik;
|
||||||
src: url("fonts/Rubik/rubik-medium.ttf") format("truetype"),
|
src: url("fonts/Rubik/rubik-medium.woff2") format("woff2");
|
||||||
url("fonts/Rubik/rubik-medium.woff") format("woff"),
|
|
||||||
url("fonts/Rubik/rubik-medium.woff2") format("woff2");
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: rubik;
|
font-family: rubik;
|
||||||
src: url("fonts/Rubik/rubik-bold.ttf") format("truetype"),
|
src: url("fonts/Rubik/rubik-bold.woff2") format("woff2");
|
||||||
url("fonts/Rubik/rubik-bold.woff") format("woff"),
|
|
||||||
url("fonts/Rubik/rubik-bold.woff2") format("woff2");
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue