Skip to content

Commit

Permalink
'asdf'
Browse files Browse the repository at this point in the history
  • Loading branch information
joy2362 committed Oct 13, 2020
1 parent b709039 commit b480215
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 55 deletions.
4 changes: 2 additions & 2 deletions app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,14 @@ public function searchJob(Request $request){
->where('lastdate','>',now())
->where('name' ,'like', '%' .$request->title . '%')
->orderBy('vacency', 'desc')
->paginate(10);
->paginate(1);
}else{
$job = JobPost::where('verify','1')
->where('lastdate','>',now())
->where('location',$request->location)
->where('name' ,'like', '%' .$request->title . '%')
->orderBy('vacency', 'desc')
->paginate(10);
->paginate(1);
}

return response()->json([ 'job'=> $job ]);
Expand Down
Binary file added public/asset/cv/student/O4OPTykF3U.pdf
Binary file not shown.
Binary file added public/asset/img/faculty/r1CgtI2U5c.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/asset/img/student/9B2XqTfTuQ.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 33 additions & 48 deletions public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10487,9 +10487,6 @@ __webpack_require__.r(__webpack_exports__);
//
//
//
//
//
//



Expand Down Expand Up @@ -94784,58 +94781,47 @@ var render = function() {
"v-row",
{ attrs: { align: "center", justify: "center" } },
[
_vm.count <= 0
? _c(
"v-row",
{ attrs: { align: "center", justify: "center" } },
_c(
"v-card",
{ attrs: { outlined: "" } },
[
_c(
"v-list-item",
[
_c(
"v-card",
{ attrs: { outlined: "" } },
"v-list-item-avatar",
{ attrs: { tile: "", size: "140" } },
[
_c("v-img", {
attrs: {
src: "/asset/img/others/404/emoji.png"
}
})
],
1
),
_vm._v(" "),
_c(
"v-list-item-content",
[
_c(
"v-list-item",
[
_c(
"v-list-item-avatar",
{ attrs: { tile: "", size: "140" } },
[
_c("v-img", {
attrs: {
src: "/asset/img/others/404/emoji.png"
}
})
],
1
),
_vm._v(" "),
_c(
"v-list-item-content",
[
_c(
"v-list-item-title",
{ staticClass: " font-weight-black" },
[_c("h1", [_vm._v("Sorry")])]
),
_vm._v(" "),
_c("v-list-item-title", [
_c("p", [
_vm._v(" No related post found")
])
])
],
1
)
],
1
)
"v-list-item-title",
{ staticClass: " font-weight-black" },
[_c("h1", [_vm._v("Sorry")])]
),
_vm._v(" "),
_c("v-list-item-title", [
_c("p", [_vm._v(" No related post found")])
])
],
1
)
],
1
)
: _vm._e()
],
1
)
],
1
)
Expand Down Expand Up @@ -166674,9 +166660,8 @@ var Token = /*#__PURE__*/function () {
var payload = this.payload(token);

if (payload) {
if (payload.iss === "http://localhost:8000/api/auth/login") {
return true;
}
//if (payload.iss === "http://localhost:8000/api/auth/login" ) {
return true; //}
}

return false;
Expand Down
3 changes: 0 additions & 3 deletions resources/js/components/findJob.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
<v-app>
<topNavBar :user="user"></topNavBar>
<v-container>
<v-row v-if="count<=0" align="center"
justify="center">
<v-row v-if="count<=0" align="center"
justify="center">
<v-card
Expand Down Expand Up @@ -34,7 +32,6 @@
</v-list-item>
</v-card>
</v-row>
</v-row>
<v-row v-else>
<v-col
cols="12"
Expand Down
4 changes: 2 additions & 2 deletions resources/js/helper/token.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ class Token {
isValid(token){
const payload =this.payload(token);
if(payload){
// if (payload.iss === "http://testseu.herokuapp.com/api/auth/login" ) {
//if (payload.iss === "http://localhost:8000/api/auth/login" ) {
return true
// }
//}
}
return false;
}
Expand Down

0 comments on commit b480215

Please sign in to comment.