Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusconstantin2503 committed Jun 14, 2019
0 parents commit eae62cf
Show file tree
Hide file tree
Showing 225 changed files with 41,569 additions and 0 deletions.
40 changes: 40 additions & 0 deletions ISSUE_TEMPLATE.md
@@ -0,0 +1,40 @@
# Prerequisites

Please answer the following questions for yourself before submitting an issue.

- [ ] I am running the latest version
- [ ] I checked the documentation and found no answer
- [ ] I checked to make sure that this issue has not already been filed
- [ ] I'm reporting the issue to the correct repository (for multi-repository projects)

# Expected Behavior

Please describe the behavior you are expecting

# Current Behavior

What is the current behavior?

# Failure Information (for bugs)

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.

## Steps to Reproduce

Please provide detailed steps for reproducing the issue.

1. step 1
2. step 2
3. you get it...

## Context

Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions.

* Device:
* Operating System:
* Browser and Version:

## Failure Logs

Please include any relevant log snippets or files here.
11 changes: 11 additions & 0 deletions changelog.md
@@ -0,0 +1,11 @@
# Changelog

All notable changes to `Black Dashboard` frontend preset for Laravel will be documented in this file.

## Version 1.0.0

### Added
- Black Dashboard v1.0.0 frontend theme
- Laravel Auth preset
- Change user profile
- User CRUD
22 changes: 22 additions & 0 deletions composer.json
@@ -0,0 +1,22 @@
{
"name": "laravel-frontend-presets/black-dashboard",
"description": "Laravel 5.x Front-end preset for black dashboard",
"license": "MIT",
"homepage": "https://github.com/creativetimofficial/black-dashboard-laravel",
"keywords": ["Laravel", "Preset", "Black"],
"require": {
"laravel/framework": "^5.5"
},
"autoload": {
"psr-4": {
"LaravelFrontendPresets\\BlackPreset\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelFrontendPresets\\BlackPreset\\BlackPresetServiceProvider"
]
}
}
}
21 changes: 21 additions & 0 deletions license.md
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 Creative Tim (https://www.creative-tim.com)

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:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

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 comments on commit eae62cf

Please sign in to comment.