Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pa2d4ti06
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Juliper
pa2d4ti06
Commits
6b54a317
Commit
6b54a317
authored
7 years ago
by
Palti Sinaga
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitlab.del.ac.id/juliper19/pa2d4ti06
parents
27fed6c4
90df7499
master
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
AdminController.php
app/Http/Controllers/AdminController.php
+1
-1
web.php
routes/web.php
+1
-1
No files found.
app/Http/Controllers/AdminController.php
View file @
6b54a317
...
...
@@ -78,7 +78,7 @@ class AdminController extends Controller
}
public
function
UpdateRequestFasilitass
(
$id
){
$data
=
DB
::
table
(
'requestfasilitas'
)
->
where
(
'id'
,
$id
)
->
first
();
//
$data = DB::table('requestfasilitas')->where('id', $id)->first();
$RF
=
RequestFasilitas
::
find
(
$id
);
$RF
->
status
=
2
;
...
...
This diff is collapsed.
Click to expand it.
routes/web.php
View file @
6b54a317
...
...
@@ -13,7 +13,7 @@ use App\Homestay;
Route
::
get
(
'/'
,
function
()
{
$data
=
Homestay
::
all
();
dd
(
$data
);
//
dd($data);
return
view
(
'index'
)
->
with
(
'data'
,
$data
);
});
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment