conflict resolve

This commit is contained in:
rahul shukla 2018-08-30 18:05:43 +05:30
parent bf02006ac9
commit 23653a7922
8 changed files with 4237 additions and 112 deletions

View File

@ -36,6 +36,8 @@ Route::group(['middleware' => ['web']], function () {
'redirect' => 'admin.session.create'
])->name('admin.session.destroy');
//orders page
// Dashboard Route
Route::get('/dashboard', 'Webkul\Admin\Http\Controllers\DashboardController@index')->name('admin.dashboard.index');

View File

@ -249,3 +249,28 @@ body {
// }
// }
// }
// admin dashboard css
.dashboard-content {
.dashboard-stats {
display: flex;
}
.graph-category {
display: flex;
margin-top: 25px;
}
.sale-stock {
display: flex;
margin-top: 25px;
}
}
// admin dashboard css ends here

View File

@ -10,6 +10,7 @@ Route::group(['middleware' => ['web']], function () {
'view' => 'shop::products.index'
]);
/* dummy routes */
Route::view('/customer/order','shop::customers.account.orders.index');
Route::view('/customer/checkout','shop::customers.checkout.index');
@ -21,7 +22,7 @@ Route::group(['middleware' => ['web']], function () {
Route::view('/customer/payment_method','shop::customers.checkout.payment-method');
Route::view('/customer/payment_complete','shop::customers.checkout.complete');
/* dummy routes ends here */
Route::view('/cart', 'shop::store.product.view.cart.index');

File diff suppressed because it is too large Load Diff

View File

@ -105,6 +105,7 @@
</div>
{{-- Triggered on responsive mode only --}}
<div class="search-suggestion">
<div class="search-content">

View File

@ -1022,3 +1022,254 @@ h2 {
}
}
}
// admin dashboard component
.dashboard-card {
height: 100px;
width: 22%;
background: #FFFFFF;
border: 1px solid #E7E7E7;
box-shadow: 0 5px 10px 2px rgba(0,0,0,0.08);
border-radius: 5px;
.visitor-content {
padding: 15px;
.title {
span {
padding-top:10px;
font-size: 14px;
color: #A2A2A2;
letter-spacing: -0.26px;
}
}
.data {
padding-top: 3px;
span {
font-size: 32px;
color: #0041FF;
letter-spacing: -0.6px;
img {
margin-left: 75px;
height: 24px;
width:24px;
}
}
span.right {
padding-top: 12px;
float: right;
font-size: 14px;
color: #8E8E8E;
letter-spacing: -0.7px;
}
}
}
}
.dashboard-card:nth-last-child(1) {
margin-left: 30px;
}
.dashboard-card:nth-last-child(2) {
margin-left: 30px;
}
.dashboard-card:nth-last-child(3) {
margin-left: 30px;
}
.dashboard-graph {
height: 413px;
width: 70.5%;
background: #FFFFFF;
border: 1px solid #E7E7E7;
box-shadow: 0 5px 10px 2px rgba(0,0,0,0.08);
border-radius: 2px;
}
.performing-category {
height: 413px;
width: 22%;
margin-left: 30px;
background: #FFFFFF;
border: 1px solid #E7E7E7;
box-shadow: 0 5px 10px 2px rgba(0,0,0,0.08);
border-radius: 2px;
.category {
margin-left: 20px;
margin-top: 20px;
.title {
span {
font-size: 14px;
color: #A2A2A2;
letter-spacing: -0.26px;
}
}
.category-info {
margin-top: 30px;
ul {
li {
.category-list {
margin-top: 10px;
.cat-name {
span {
font-size: 16px;
color: #0041FF;
letter-spacing: -0.3px;
}
.right-side {
float: right;
margin-right: 12px;
margin-top: 10px;
height: 20px;
width: 20px;
}
}
.product-info {
margin-top: 5px;
span {
font-size: 16px;
color: #3A3A3A;
letter-spacing: -0.3px;
}
}
.horizon-rule {
margin-top: 8px;
border: .7px solid #D8D8D8;
}
}
}
li:last-child {
.category-list {
.horizon-rule {
display: none;
}
}
}
}
}
}
}
.sale {
height: 465px;
width: 30.1%;
background: #FFFFFF;
border: 1px solid #E7E7E7;
box-shadow: 0 5px 10px 2px rgba(0,0,0,0.08);
border-radius: 2px;
.top-sale {
margin-left: 20px;
margin-top: 27px;
.title {
span {
font-size: 14px;
color: #A2A2A2;
letter-spacing: -0.26px;
}
}
.sale-info {
ul {
li {
.pro-attribute{
display: flex;
margin-top: 10px;
.pro-img {
height: 60px;
width: 60px;
border: 1px solid green;
}
.product-description {
margin-left: 15px;
margin-top: 8px;
width: 75%;
.product-name {
span {
font-size: 14px;
color: #0041FF;
letter-spacing: -0.26px;
}
.right-side {
float: right;
margin-top: 10px;
height: 20px;
width: 20px;
}
}
.product-info {
span {
font-size: 14px;
color: #3A3A3A;
letter-spacing: -0.26px;
}
}
}
}
.horizontal-rule {
border: .5px solid #A2A2A2;
opacity: 0.2;
margin-top: 10px;
}
}
li:last-child {
.horizontal-rule {
display: none;
}
}
}
}
}
}
.sale:nth-last-child(1) {
margin-left: 31px;
}
.sale:nth-last-child(2) {
margin-left: 31px;
}
// admin dashboard css ends here

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long