Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simpkm
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
simpkm
Commits
5210cdff
Commit
5210cdff
authored
Feb 13, 2025
by
Farendi Giotivano R.P
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kelompok by periode
parent
29485ae8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
app/Http/Controllers/Dosen/KelompokController.php
+3
-1
app/Http/Controllers/Mahasiswa/KelompokController.php
+19
-1
No files found.
app/Http/Controllers/Dosen/KelompokController.php
View file @
5210cdff
...
...
@@ -34,7 +34,9 @@ class KelompokController extends Controller
$kelompok
=
Kelompok
::
with
([
'rAnggota'
])
->
where
(
'nidn_dosen'
,
$bio
->
noidentitas
)
->
where
(
'kirim'
,
'1'
)
->
whereYear
(
'created_at'
,
$year
)
->
whereHas
(
'rPeriode'
,
function
(
$query
)
use
(
$year
)
{
$query
->
where
(
'nama'
,
$year
);
})
->
orderBy
(
'kode'
)
->
get
();
...
...
app/Http/Controllers/Mahasiswa/KelompokController.php
View file @
5210cdff
...
...
@@ -37,7 +37,9 @@ class KelompokController extends Controller
->
whereHas
(
'rAnggota'
,
function
(
$query
)
use
(
$nim
){
$query
->
where
(
'nim'
,
$nim
);
})
->
whereYear
(
'created_at'
,
$year
)
->
whereHas
(
'rPeriode'
,
function
(
$query
)
use
(
$year
)
{
$query
->
where
(
'nama'
,
$year
);
})
->
orderBy
(
'kode'
)
->
get
();
...
...
@@ -220,6 +222,22 @@ class KelompokController extends Controller
return
redirect
()
->
route
(
'mahasiswa.kelompok.index'
);
}
public
function
hapusanggota
(
Request
$request
)
{
$kel
=
$request
->
except
(
'_token'
);
$get
=
explode
(
'_'
,
decrypt
(
$kel
[
'id'
]));
$dataid
=
$get
[
0
];
$kelId
=
$get
[
1
];
$kelompok
=
KelompokDetail
::
query
()
->
find
(
$dataid
);
$kelompok
->
delete
();
return
redirect
()
->
route
(
'mahasiswa.kelompok.createnew'
,
[
'id'
=>
encrypt
(
$kelId
)])
->
with
(
'success'
,
'Berhasil dihapus'
);
}
// public function cetak_kelompok(Request $request)
// {
// $fakultas = $request->fakultas;
...
...
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