This commit is contained in:
vedatakd 2020-02-04 15:54:00 +03:00
commit 1425019cdd
13 changed files with 72 additions and 40 deletions

View File

@ -28,4 +28,19 @@
max-height: 200px; max-height: 200px;
margin: auto; margin: auto;
margin-top: 10px; margin-top: 10px;
}
.table-classified .td-image,
.table-classified .td-date {
min-width: 100px;
}
.table-classified .td-price {
min-width: 150px;
}
.table-classified .td-country,
.table-classified .td-subject {
min-width: 200px;
} }

View File

@ -2,6 +2,6 @@
return [ return [
'title' => 'Les publicités', 'title' => 'Les publicités',
'name' => 'Module d\\'annonces', 'name' => 'Module dannonces',
'description' => 'Module d\\'annonces', 'description' => 'Module dannonces',
]; ];

View File

@ -2,7 +2,7 @@
return [ return [
'error_added_cart' => 'Le produit demandé est actuellement manquant ou inactif', 'error_added_cart' => 'Le produit demandé est actuellement manquant ou inactif',
'please_buy_package' => 'S\\'il vous plaît acheter le paquet', 'please_buy_package' => 'Sil vous plaît acheter le paquet',
'please_payment' => 'Please Pay', 'please_payment' => 'Please Pay',
'bank_account_info' => 'Bank account information', 'bank_account_info' => 'Bank account information',
'agreement' => 'By clicking Post, you agree to our Terms of Use and Privacy Policy acknowledge that you are the rightful owner of this item.', 'agreement' => 'By clicking Post, you agree to our Terms of Use and Privacy Policy acknowledge that you are the rightful owner of this item.',

View File

@ -28,21 +28,21 @@
<img class="img-thumbnail" src="{{ adv.cover_photo }}" alt="{{ adv.name }}"> <img class="img-thumbnail" src="{{ adv.cover_photo }}" alt="{{ adv.name }}">
</a> </a>
</td> </td>
<td class="text-left justify-content-center align-middle"> <td class="text-left justify-content-center align-middle td-subject">
<div class="table-row-name"> <div class="table-row-name">
<a href="{{ adv.detail_url }}" class="text-dark"> <a href="{{ adv.detail_url }}" class="text-dark">
{{ adv.name }} {{ adv.name }}
</a> </a>
</div> </div>
</td> </td>
<td class="justify-content-center align-middle"> <td class="justify-content-center align-middle td-price">
<b>{{ adv.price.currency(null,'currency',false) }}</b> <b>{{ adv.price.currency(null,'currency',false) }}</b>
</td> </td>
<td class="justify-content-center align-middle"> <td class="justify-content-center align-middle td-date">
<small>{{ adv.created_at|date("d/m/Y") }}</small> <small>{{ adv.created_at|date("d/m/Y") }}</small>
</td> </td>
{% if setting_value('visiosoft.module.location::list_page_location') %} {% if setting_value('visiosoft.module.location::list_page_location') %}
<td class="justify-content-center align-middle"> <td class="justify-content-center align-middle td-country">
<small>{{ adv.city_name }} / {{ adv.country_name }}</small> <small>{{ adv.city_name }} / {{ adv.country_name }}</small>
</td> </td>
{% endif %} {% endif %}

View File

@ -6,4 +6,5 @@ return [
'logout' => 'Logout', 'logout' => 'Logout',
'view_site' => 'View Site', 'view_site' => 'View Site',
'title' => 'Control Panel', 'title' => 'Control Panel',
'search_placeholder' => 'Type to search',
]; ];

View File

@ -6,4 +6,5 @@ return [
'logout' => ıkış Yap', 'logout' => ıkış Yap',
'view_site' => 'Siteyi Görüntüle', 'view_site' => 'Siteyi Görüntüle',
'title' => 'Kontrol Paneli', 'title' => 'Kontrol Paneli',
'search_placeholder' => 'Ara',
]; ];

View File

@ -19,7 +19,7 @@
<form class="navbar-form dropdown" id="search"> <form class="navbar-form dropdown" id="search">
<input type="text" class="form-control search-bar" placeholder="Type to search..."> <input type="text" class="form-control search-bar" placeholder="{{ trans('visiosoft.theme.defaultadmin::control_panel.search_placeholder') }}...">
<button type="submit" class="btn btn-search"><i class="fa fa-search"></i></button> <button type="submit" class="btn btn-search"><i class="fa fa-search"></i></button>

View File

@ -52,4 +52,4 @@ $app->singleton(
| |
*/ */
return $app; return $app;

View File

@ -31,4 +31,4 @@ $compiledPath = __DIR__.'/cache/compiled.php';
if (file_exists($compiledPath)) { if (file_exists($compiledPath)) {
require $compiledPath; require $compiledPath;
} }

View File

@ -1,2 +0,0 @@
*
!.gitignore

View File

@ -17,54 +17,62 @@
"require": { "require": {
"wikimedia/composer-merge-plugin": "~1.4.0", "wikimedia/composer-merge-plugin": "~1.4.0",
"anomaly/streams-composer-plugin": "~1.1.0", "anomaly/streams-composer-plugin": "~1.1.0",
"anomaly/streams-platform": "~1.5.0", "visiosoft/streams-platform": "^1.7",
"anomaly/default_authenticator-extension": "~2.1.0", "anomaly/default_authenticator-extension": "~2.1.0",
"anomaly/throttle_security_check-extension": "~2.1.0", "anomaly/throttle_security_check-extension": "~2.1.0",
"anomaly/local_storage_adapter-extension": "~2.1.0", "anomaly/private_storage_adapter-extension": "~1.0.0",
"anomaly/default_page_handler-extension": "~2.1.0", "anomaly/default_page_handler-extension": "~2.1.0",
"anomaly/user_security_check-extension": "~2.1.0", "anomaly/user_security_check-extension": "~2.1.0",
"anomaly/xml_feed_widget-extension": "~2.1.0", "anomaly/xml_feed_widget-extension": "~2.1.0",
"anomaly/page_link_type-extension": "~2.1.0", "anomaly/page_link_type-extension": "~2.1.0",
"anomaly/url_link_type-extension": "~2.1.0", "anomaly/url_link_type-extension": "~2.1.0",
"anomaly/relationship-field_type": "~2.2.0", "anomaly/relationship-field_type": "~2.2.0",
"anomaly/colorpicker-field_type": "~2.3.0",
"anomaly/polymorphic-field_type": "~2.1.0", "anomaly/polymorphic-field_type": "~2.1.0",
"anomaly/checkboxes-field_type": "~2.4.0", "anomaly/checkboxes-field_type": "~2.4.0",
"anomaly/encrypted-field_type": "~2.1.0",
"anomaly/datetime-field_type": "~3.0.0", "anomaly/datetime-field_type": "~3.0.0",
"anomaly/repeater-field_type": "~1.3.0", "anomaly/repeater-field_type": "~1.3.0",
"anomaly/language-field_type": "~2.2.0", "anomaly/language-field_type": "~2.2.0",
"anomaly/multiple-field_type": "~2.2.0", "anomaly/multiple-field_type": "~2.3.0",
"anomaly/textarea-field_type": "~2.1.0", "anomaly/textarea-field_type": "~2.1.0",
"anomaly/markdown-field_type": "~3.1.0",
"anomaly/wysiwyg-field_type": "~3.1.0", "anomaly/wysiwyg-field_type": "~3.1.0",
"anomaly/boolean-field_type": "~2.3.0", "anomaly/boolean-field_type": "~2.3.0",
"anomaly/country-field_type": "~2.3.0",
"anomaly/decimal-field_type": "~2.1.0", "anomaly/decimal-field_type": "~2.1.0",
"anomaly/integer-field_type": "~2.1.0", "anomaly/integer-field_type": "~2.1.0",
"anomaly/editor-field_type": "~3.1.0", "anomaly/editor-field_type": "~3.1.0",
"anomaly/select-field_type": "~2.3.0", "anomaly/select-field_type": "~2.3.0",
"anomaly/slider-field_type": "~3.0.0",
"anomaly/addon-field_type": "~2.2.0", "anomaly/addon-field_type": "~2.2.0",
"anomaly/email-field_type": "~2.1.0", "anomaly/email-field_type": "~2.1.0",
"anomaly/files-field_type": "~2.2.0", "anomaly/state-field_type": "~2.3.0",
"anomaly/tags-field_type": "~2.3.0", "anomaly/files-field_type": "~2.3.0",
"anomaly/tags-field_type": "~2.4.0",
"anomaly/slug-field_type": "~2.1.0", "anomaly/slug-field_type": "~2.1.0",
"anomaly/text-field_type": "~2.2.0", "anomaly/text-field_type": "~2.2.0",
"anomaly/file-field_type": "2.2.32", "anomaly/file-field_type": "2.2.32",
"anomaly/url-field_type": "~2.2.0", "anomaly/url-field_type": "~2.2.0",
"anomaly/configuration-module": "~2.1.0", "anomaly/configuration-module": "~2.1.0",
"anomaly/preferences-module": "~2.1.0", "anomaly/preferences-module": "~2.2.0",
"anomaly/navigation-module": "~2.4.0", "anomaly/navigation-module": "~2.4.0",
"anomaly/dashboard-module": "~2.2.0", "anomaly/dashboard-module": "~2.2.0",
"anomaly/redirects-module": "~2.2.0", "anomaly/redirects-module": "~2.3.0",
"anomaly/variables-module": "~2.3.0", "anomaly/variables-module": "~2.4.0",
"anomaly/settings-module": "~2.3.0", "anomaly/settings-module": "~2.4.0",
"anomaly/addons-module": "~2.2.0", "anomaly/addons-module": "~2.3.0",
"anomaly/blocks-module": "~1.2.0", "anomaly/blocks-module": "~1.3.0",
"anomaly/users-module": "~2.4.0", "anomaly/search-module": "~3.0.0",
"anomaly/pages-module": "~2.5.0", "anomaly/system-module": "~1.0.0",
"anomaly/posts-module": "~2.5.0", "anomaly/users-module": "~2.5.0",
"anomaly/files-module": "~2.5.0", "anomaly/pages-module": "~2.6.0",
"anomaly/posts-module": "~2.6.0",
"anomaly/files-module": "~2.6.0",
"anomaly/contact-plugin": "~1.2.0", "anomaly/contact-plugin": "~1.2.0",
"anomaly/helper-plugin": "~2.1.0", "anomaly/helper-plugin": "~2.1.0",
"anomaly/robots-extension": "~2.1.0", "anomaly/robots-extension": "~2.1.0",
"anomaly/sitemap-extension": "~2.1.0", "anomaly/sitemap-extension": "~2.2.0",
"anomaly/html_block-extension": "~1.0.0", "anomaly/html_block-extension": "~1.0.0",
"anomaly/wysiwyg_block-extension": "~1.0.0", "anomaly/wysiwyg_block-extension": "~1.0.0",
"ammadeuss/laravel-html-dom-parser": "^1.1", "ammadeuss/laravel-html-dom-parser": "^1.1",
@ -72,10 +80,12 @@
"visiosoft/integer-field_type": "~2.1.0", "visiosoft/integer-field_type": "~2.1.0",
"guzzlehttp/guzzle": "~6.3.3" "guzzlehttp/guzzle": "~6.3.3"
}, },
"replace" : {
"anomaly/streams-platform": "*"
},
"require-dev": { "require-dev": {
"filp/whoops": "~2.0", "filp/whoops": "~2.0",
"laravel/tinker": "^1.0", "phpunit/phpunit": "^7.0",
"phpunit/phpunit": "~6.0",
"fzaninotto/faker": "~1.4", "fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*", "mockery/mockery": "0.9.*",
"symfony/css-selector": "3.1.*", "symfony/css-selector": "3.1.*",
@ -113,6 +123,11 @@
], ],
"recurse": true, "recurse": true,
"replace": false "replace": false
},
"laravel": {
"dont-discover": [
"*"
]
} }
}, },
"config": { "config": {

View File

@ -1 +0,0 @@

View File

@ -3,20 +3,23 @@
"scripts": { "scripts": {
"dev": "npm run development", "dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", "watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll", "watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production", "prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
}, },
"devDependencies": { "devDependencies": {
"axios": "^0.18.1", "axios": "^0.19",
"bootstrap": "^4.0.0", "bootstrap": "^4.1.0",
"popper.js": "^1.12",
"cross-env": "^5.1", "cross-env": "^5.1",
"jquery": "^3.2", "jquery": "^3.2",
"laravel-mix": "^2.0", "laravel-mix": "^4.0.7",
"lodash": "^4.17.4", "lodash": "^4.17.13",
"vue": "^2.5.7" "popper.js": "^1.12",
"resolve-url-loader": "^2.3.1",
"sass": "^1.15.2",
"sass-loader": "^7.1.0",
"vue": "^2.5.17"
} }
} }