Skip to content

Commit 2cb2fdf

Browse files
author
CI Bot
committed
merge with fork
1 parent dd04137 commit 2cb2fdf

File tree

96 files changed

+13229
-0
lines changed

Some content is hidden

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

96 files changed

+13229
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Update Fork
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
Explore-GitHub-Actions:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Stats
11+
run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event. "
12+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
13+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
14+
- run: mkdir ct_folder
15+
- run: cd ct_folder
16+
- name: Checkout ct
17+
uses: actions/checkout@v3
18+
with:
19+
repository: creativetimofficial/paper-dashboard-laravel
20+
token: ${{ secrets.CT_TOKEN }}
21+
path: ct_folder
22+
- name: Checkout preset
23+
uses: actions/checkout@v3
24+
with:
25+
repository: laravel-frontend-presets/paper-dashboard
26+
token: ${{ secrets.CT_TOKEN }}
27+
path: preset_folder
28+
- run: rsync -av --progress /home/runner/work/paper-dashboard-laravel/paper-dashboard-laravel/ct_folder /home/runner/work/paper-dashboard-laravel/paper-dashboard-laravel/preset_folder --exclude .git
29+
- name: Configure git
30+
run: |
31+
pwd
32+
cd /home/runner/work/paper-dashboard-laravel/paper-dashboard-laravel/preset_folder
33+
pwd
34+
git config --global user.name "CI Bot"
35+
git config --global user.email "[email protected]"
36+
git add .
37+
git commit -m "merge with fork"
38+
git push origin HEAD:master --force
39+
shell: bash
40+
- run: echo "The fork was updated"
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Update Fork
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
Explore-GitHub-Actions:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Stats
11+
run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
12+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
13+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
14+
- name: Check out repository code
15+
uses: actions/checkout@v3
16+
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
17+
- name: List files in the repository
18+
run: |
19+
ls ${{ github.workspace }}
20+
- name: Create a Push
21+
id: create_release
22+
uses: actions/create-release@v1
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.TOKEN_CT }}
25+
- name: Update code on fork repository
26+
run: git remote add upstream https://github.com/teamupdivision/creativetimofficial/paper-dashboard-laravel.git
27+
- run: git fetch upstream
28+
- run: git checkout upstream/master
29+
- run: git merge origin/master
30+
- run: git push upstream/master
31+
- run: echo "The fork was updated!"

ct_folder/.vscode/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.background": "#57151F",
4+
"titleBar.activeBackground": "#7A1D2B",
5+
"titleBar.activeForeground": "#FEFBFB"
6+
}
7+
}

ct_folder/ISSUE_TEMPLATE.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Prerequisites
2+
3+
Please answer the following questions for yourself before submitting an issue.
4+
5+
- [ ] I am running the latest version
6+
- [ ] I checked the documentation and found no answer
7+
- [ ] I checked to make sure that this issue has not already been filed
8+
- [ ] I'm reporting the issue to the correct repository (for multi-repository projects)
9+
10+
# Expected Behavior
11+
12+
Please describe the behavior you are expecting
13+
14+
# Current Behavior
15+
16+
What is the current behavior?
17+
18+
# Failure Information (for bugs)
19+
20+
Please help provide information about the failure if this is a bug. If it is not a bug, please remove the rest of this template.
21+
22+
## Steps to Reproduce
23+
24+
Please provide detailed steps for reproducing the issue.
25+
26+
1. step 1
27+
2. step 2
28+
3. you get it...
29+
30+
## Context
31+
32+
Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions.
33+
34+
* Device:
35+
* Operating System:
36+
* Browser and Version:
37+
38+
## Failure Logs
39+
40+
Please include any relevant log snippets or files here.

ct_folder/changelog.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Changelog
2+
3+
All notable changes to `Paper Dashboard` frontend preset for Laravel will be documented in this file.
4+
5+
## Version 1.0.0
6+
7+
### Added
8+
- Paper v1.0.0 frontend theme
9+
- Laravel Auth preset
10+
- Change user profile
11+
- User CRUD
12+
13+
## Version 1.0.1 - 2019-09-23
14+
15+
- Update to Laravel 6.x
16+
17+
## Version 1.0.2 - 2019-11-14
18+
19+
- Update Composer
20+
21+
## Version 1.0.3 - 2020-03-18
22+
23+
- Update to Laravel 7.x
24+
25+
## Version 1.0.4 - 2020-09-21
26+
27+
- Update to Laravel 8.x
28+
29+
## Version 1.0.5 - 2022-03-28
30+
31+
- Update to Laravel 9.x

ct_folder/composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "laravel-frontend-presets/paper",
3+
"description": "Laravel 9.x Front-end preset for paper dashboard",
4+
"license": "MIT",
5+
"homepage": "https://github.com/creativetimofficial/paper-dashboard-laravel",
6+
"keywords": ["Laravel", "Preset", "Paper"],
7+
"require": {
8+
"laravel/framework": "^9.0",
9+
"laravel/legacy-factories": "^1.0"
10+
},
11+
"autoload": {
12+
"psr-4": {
13+
"LaravelFrontendPresets\\PaperPreset\\": "src/"
14+
}
15+
},
16+
"extra": {
17+
"laravel": {
18+
"providers": [
19+
"LaravelFrontendPresets\\PaperPreset\\PaperPresetServiceProvider"
20+
]
21+
}
22+
}
23+
}

ct_folder/docs/documentation.html

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
<!--
2+
=========================================================
3+
Paper Dashboard - v2.0.0
4+
=========================================================
5+
6+
Product Page: https://www.creative-tim.com/product/paper-dashboard
7+
Copyright 2019 Creative Tim (https://www.creative-tim.com)
8+
Licensed under MIT (https://github.com/creativetimofficial/paper-dashboard/blob/master/LICENSE)
9+
10+
Coded by Creative Tim
11+
12+
=========================================================
13+
14+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -->
15+
16+
17+
18+
<!DOCTYPE html>
19+
<html lang="en">
20+
21+
<head>
22+
<meta charset="utf-8" />
23+
<link rel="apple-touch-icon" sizes="76x76" href="../src/paper-dashboard-stubs/resources/assets/img/apple-icon.png">
24+
<link rel="icon" type="image/png" href="../src/paper-dashboard-stubs/resources/assets/img/favicon.png">
25+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
26+
<title>
27+
Components Documentation - Paper Dashboard by Creative Tim
28+
</title>
29+
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
30+
<!-- Fonts and icons -->
31+
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet" />
32+
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
33+
<!-- CSS Files -->
34+
<link href="../src/paper-dashboard-stubs/resources/assets/css/bootstrap.min.css" rel="stylesheet" />
35+
<link href="../src/paper-dashboard-stubs/resources/assets/css/paper-dashboard.css?v=2.0.0" rel="stylesheet" />
36+
<!-- CSS Just for demo purpose, don't include it in your project -->
37+
<link href="../src/paper-dashboard-stubs/resources/assets/demo/demo.css" rel="stylesheet" />
38+
</head>
39+
40+
<body class="offline-doc">
41+
<!-- Navbar -->
42+
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
43+
<div class="container">
44+
<div class="navbar-wrapper">
45+
<div class="navbar-toggle">
46+
<button type="button" class="navbar-toggler">
47+
<span class="navbar-toggler-bar bar1"></span>
48+
<span class="navbar-toggler-bar bar2"></span>
49+
<span class="navbar-toggler-bar bar3"></span>
50+
</button>
51+
</div>
52+
<a class="navbar-brand" href="#pablo">Paper Dashboard</a>
53+
</div>
54+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
55+
<span class="navbar-toggler-bar navbar-kebab"></span>
56+
<span class="navbar-toggler-bar navbar-kebab"></span>
57+
<span class="navbar-toggler-bar navbar-kebab"></span>
58+
</button>
59+
<div class="collapse navbar-collapse justify-content-end" id="navigation">
60+
<ul class="navbar-nav">
61+
<li class="nav-item">
62+
<a class="nav-link" href="https://github.com/creativetimofficial/paper-dashboard/issues" target="_blank">
63+
Have an issue?
64+
</a>
65+
</li>
66+
</ul>
67+
</div>
68+
</div>
69+
</nav>
70+
<!-- End Navbar -->
71+
<div class="page-header clear-filter">
72+
<div class="page-header-image" style="background-image: url('../src/paper-dashboard-stubs/resources/assets/img/jan-sendereks.jpg');"></div>
73+
<div class="container text-center">
74+
<div class="col-md-8 ml-auto mr-auto">
75+
<div class="brand">
76+
<h1 class="title">
77+
Paper Dashboard
78+
</h1>
79+
<h3 class="description">Documentation v2.0.0</h3>
80+
<br/>
81+
<a href="https://paper-dashboard-laravel.creative-tim.com/docs/getting-started/laravel-setup.html" class="btn btn-primary btn-round btn-lg">View documentation</a>
82+
</div>
83+
</div>
84+
</div>
85+
</div>
86+
<footer class="footer footer-black footer-white ">
87+
<div class="container-fluid">
88+
<div class="row">
89+
<nav class="footer-nav">
90+
<ul>
91+
<li>
92+
<a href="https://www.creative-tim.com" target="_blank">Creative Tim</a>
93+
</li>
94+
<li>
95+
<a href="http://blog.creative-tim.com/" target="_blank">Blog</a>
96+
</li>
97+
<li>
98+
<a href="https://www.creative-tim.com/license" target="_blank">Licenses</a>
99+
</li>
100+
</ul>
101+
</nav>
102+
<div class="credits ml-auto">
103+
<span class="copyright">
104+
©
105+
<script>
106+
document.write(new Date().getFullYear())
107+
</script>, made with <i class="fa fa-heart heart"></i> by Creative Tim
108+
</span>
109+
</div>
110+
</div>
111+
</div>
112+
</footer>
113+
<!-- Core JS Files -->
114+
<script src="../src/paper-dashboard-stubs/resources/assets/js/core/jquery.min.js"></script>
115+
<script src="../src/paper-dashboard-stubs/resources/assets/js/core/popper.min.js"></script>
116+
<script src="../src/paper-dashboard-stubs/resources/assets/js/core/bootstrap.min.js"></script>
117+
<script src="../src/paper-dashboard-stubs/resources/assets/js/plugins/perfect-scrollbar.jquery.min.js"></script>
118+
<!-- Google Maps Plugin -->
119+
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_HERE"></script>
120+
<!-- Chart JS -->
121+
<script src="../src/paper-dashboard-stubs/resources/assets/js/plugins/chartjs.min.js"></script>
122+
<!-- Notifications Plugin -->
123+
<script src="../src/paper-dashboard-stubs/resources/assets/js/plugins/bootstrap-notify.js"></script>
124+
<!-- Control Center for Now Ui Dashboard: parallax effects, scripts for the example pages etc -->
125+
<script src="../src/paper-dashboard-stubs/resources/assets/js/paper-dashboard.min.js?v=2.0.0" type="text/javascript"></script>
126+
<!-- Paper Dashboard DEMO methods, don't include it in your project! -->
127+
<script src="../src/paper-dashboard-stubs/resources/assets/demo/demo.js"></script>
128+
</body>
129+
130+
</html>

ct_folder/license.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MIT License
2+
3+
Copyright (c) 2022 [Updivision](https://updivision.com) [Creative Tim](https://www.creative-tim.com)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)