endpoint edited

This commit is contained in:
Burak Civan 2022-07-18 17:58:08 +03:00
parent d9e70682fa
commit 545303b04b
3 changed files with 2 additions and 6 deletions

View File

@ -155,7 +155,7 @@ class Tiles extends Controller
$modules = $this->getSearchModules($data); $modules = $this->getSearchModules($data);
$installed = Module::all()->pluck('enabled', 'alias')->toArray(); $installed = Module::all()->pluck('enabled', 'alias')->toArray();
return view('modules.tiles.index', compact('title', 'modules', 'keyword', 'installed')); return $this->response('modules.tiles.index', compact('modules', 'title', 'keyword', 'installed'));
} }
public function loadMore($type, Request $request) public function loadMore($type, Request $request)

4
public/css/app.css vendored
View File

@ -47449,10 +47449,6 @@ body{
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
} }
.hover\:rounded-lg:hover{
border-radius: 0.5rem;
}
.hover\:bg-gray-100:hover{ .hover\:bg-gray-100:hover{
--tw-bg-opacity: 1; --tw-bg-opacity: 1;
background-color: rgb(243 244 246 / var(--tw-bg-opacity)); background-color: rgb(243 244 246 / var(--tw-bg-opacity));

View File

@ -309,7 +309,7 @@ const app = new Vue({
let target_length = event.target.value.length; let target_length = event.target.value.length;
if (target_length > 2) { if (target_length > 2) {
window.axios.get(url + '/apps/paid') window.axios.get(url + '/apps/search?keyword=' + event.target.value)
.then(response => { .then(response => {
this.live_search_data = response.data.data.data; this.live_search_data = response.data.data.data;
this.live_search_modal = true; this.live_search_modal = true;