Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simlitabmas
Overview
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
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Farendi Giotivano R.P
simlitabmas
Commits
a4badc42
Commit
a4badc42
authored
Apr 26, 2021
by
Farendi Giotivano R.P
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://git.unesa.ac.id/farendi/simlitabmas
into master
parents
0ed4ead1
8fca8e8a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
3 deletions
+38
-3
app/Http/Controllers/User/PenelitianSumberDanaController.php
+1
-2
app/Http/Controllers/User/PublikasiJurnalController.php
+16
-1
resources/views/user/publikasijurnal/index.blade.php
+21
-0
No files found.
app/Http/Controllers/User/PenelitianSumberDanaController.php
View file @
a4badc42
...
...
@@ -196,9 +196,8 @@ class PenelitianSumberDanaController extends Controller
DB
::
beginTransaction
();
$penelitian
=
PenelitianSumber
::
query
()
->
find
(
decrypt
(
$id
));
$anggota
=
$penelitian
->
anggota
;
$
anggota
->
delete
();
$
penelitian
->
anggota
()
->
delete
();
$penelitian
->
delete
();
DB
::
commit
();
...
...
app/Http/Controllers/User/PublikasiJurnalController.php
View file @
a4badc42
...
...
@@ -9,6 +9,7 @@ use App\Models\User\PublikasiJurnalAnggota;
use
Exception
;
use
Illuminate\Http\Request
;
use
Illuminate\Support\Facades\Auth
;
use
Illuminate\Support\Facades\DB
;
use
Validator
;
class
PublikasiJurnalController
extends
Controller
...
...
@@ -241,6 +242,20 @@ class PublikasiJurnalController extends Controller
*/
public
function
destroy
(
$id
)
{
//
try
{
DB
::
beginTransaction
();
$penelitian
=
PublikasiJurnal
::
query
()
->
find
(
decrypt
(
$id
));
$penelitian
->
anggota
()
->
delete
();
$penelitian
->
delete
();
DB
::
commit
();
return
redirect
()
->
route
(
'publikasijurnal.index'
);
}
catch
(
Exception
$ex
){
DB
::
rollBack
();
return
redirect
()
->
route
(
'publikasijurnal.index'
);
}
}
}
resources/views/user/publikasijurnal/index.blade.php
View file @
a4badc42
...
...
@@ -80,5 +80,26 @@
"
lengthMenu
": [10, 20, 50],
"
pageLength
": 10
});
$("
body
").on("
click
", "
.
delete
", function (e) {
e.preventDefault();
var id = $(this).data('target');
Swal.fire({
title: "
Apakah
Anda
Yakin
?
",
text: "
Anda
akan
menghapus
data
ini
!
",
icon: "
warning
",
showCancelButton: true,
confirmButtonColor: "
#DD6B55",
confirmButtonText
:
"Yes"
,
cancelButtonText
:
"No"
})
.
then
((
result
)
=>
{
if
(
result
.
value
)
{
Swal
.
close
();
$
(
"#"
+
id
)
.
submit
();
}
else
if
(
result
.
dismiss
===
Swal
.
DismissReason
.
cancel
)
{
Swal
.
fire
(
'Dibatalkan'
,
'Data batal dihapus'
,
'error'
);
}
});
});
</
script
>
@
endsection
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