Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
goldenticket
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
Siti Aisah
goldenticket
Commits
afde90e5
Commit
afde90e5
authored
Feb 27, 2025
by
Siti Aisah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete
parent
522186eb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
299 deletions
+0
-299
app/Http/Controllers/Admin/Auth/LoginController.php
+0
-20
app/Http/Controllers/Admin/DashboardController.php
+0
-25
app/Http/Controllers/Admin/KategoriController.php
+0
-119
resources/views/Admin/login.blade.php
+0
-135
resources/views/dashboard.blade.php
+0
-0
No files found.
app/Http/Controllers/Admin/Auth/LoginController.php
deleted
100644 → 0
View file @
522186eb
<?php
namespace
App\Http\Controllers\Admin\Auth
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Http\RedirectResponse
;
use
Illuminate\Http\Request
;
use
Illuminate\Support\Facades\Auth
;
class
LoginController
extends
Controller
{
public
function
logout
(
Request
$request
)
:
RedirectResponse
{
Auth
::
logout
();
$request
->
session
()
->
invalidate
();
$request
->
session
()
->
regenerateToken
();
return
redirect
(
'login'
);
}
}
app/Http/Controllers/Admin/DashboardController.php
deleted
100644 → 0
View file @
522186eb
<?php
namespace
App\Http\Controllers\Admin
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Support\Facades\DB
;
class
DashboardController
extends
Controller
{
public
function
index
()
{
$data
[
'jumlah'
]
=
DB
::
table
(
"tr_pengajuan"
)
->
select
(
"id_kategori"
,
DB
::
raw
(
"count (id_kategori) as jumlah"
))
->
groupBy
(
"id_kategori"
)
->
pluck
(
'jumlah'
,
'id_kategori'
);
$semua
=
DB
::
table
(
'bantuan_pengusul'
)
->
count
();
$sudah
=
DB
::
table
(
'tr_pengajuan'
)
->
count
();
$data
[
'sudah'
]
=
$sudah
;
$data
[
'belum'
]
=
$semua
-
$sudah
;
return
view
(
'dashboard'
,
$data
);
}
}
app/Http/Controllers/Admin/KategoriController.php
deleted
100644 → 0
View file @
522186eb
<?php
namespace
App\Http\Controllers\Admin
;
use
App\Http\Controllers\Controller
;
use
App\Http\Support\ValidationRule
;
use
App\Models\Admin\MsKategori
;
use
Exception
;
use
Illuminate\Http\Request
;
use
Illuminate\Support\Facades\DB
;
use
Illuminate\Support\Facades\Log
;
use
Illuminate\Support\Facades\Redirect
;
class
KategoriController
extends
Controller
{
public
function
index
()
{
$kategori
=
MsKategori
::
query
()
->
get
();
$data
=
[
'kategori'
=>
$kategori
];
return
view
(
'Admin.Kategori.index'
,
$data
);
}
public
function
store
(
Request
$request
){
$rule
=
[
'kodekategori'
=>
'required|string'
,
'namakategori'
=>
'required|string'
,
// 'poinsaku' => 'required|string'
];
$request
->
validate
(
$rule
,
ValidationRule
::
getErrorMessage
(
$rule
));
DB
::
beginTransaction
();
try
{
$kategori
=
[
'kode_kategori'
=>
strip_tags
(
$request
->
kodekategori
),
'nama_kategori'
=>
strip_tags
(
$request
->
namakategori
),
// 'poin_saku' => strip_tags($request->poinsaku),
'status'
=>
$request
->
status
];
MsKategori
::
query
()
->
create
(
$kategori
);
DB
::
commit
();
return
Redirect
::
route
(
'kategori.index'
)
->
with
(
'success'
,
'Data kategori berhasil ditambahkan'
);
}
catch
(
Exception
$e
){
Log
::
error
(
$e
);
DB
::
rollBack
();
return
Redirect
::
route
(
'kategori.index'
)
->
with
(
'error'
,
'Data kategori gagal ditambahkan'
);
}
}
public
function
update
(
Request
$request
,
$id
){
$rule
=
[
'kodekategori'
=>
'required|string'
,
'namakategori'
=>
'required|string'
,
// 'poinsaku' => 'required|string'
];
$request
->
validate
(
$rule
,
ValidationRule
::
getErrorMessage
(
$rule
));
DB
::
beginTransaction
();
try
{
$id
=
decrypt
(
$id
);
$kategori
=
[
'kode_kategori'
=>
strip_tags
(
$request
->
kodekategori
),
'nama_kategori'
=>
strip_tags
(
$request
->
namakategori
),
// 'poin_saku' => strip_tags($request->poinsaku),
'status'
=>
$request
->
status
];
MsKategori
::
where
(
'id'
,
$id
)
->
update
(
$kategori
);
DB
::
commit
();
return
Redirect
::
route
(
'kategori.index'
)
->
with
(
'success'
,
'Data kategori berhasil diupdate'
);
}
catch
(
Exception
$e
){
Log
::
error
(
$e
);
DB
::
rollBack
();
return
Redirect
::
route
(
'kategori.index'
)
->
with
(
'error'
,
'Data kategori gagal diupdate'
);
}
}
public
function
destroy
(
$id
)
{
$id
=
decrypt
(
$id
);
DB
::
beginTransaction
();
try
{
MsKategori
::
where
(
'id'
,
$id
)
->
delete
();
DB
::
commit
();
return
Redirect
::
route
(
'kategori.index'
)
->
with
(
'success'
,
'Data kategori berhasil dihapus'
);
}
catch
(
Exception
$e
){
Log
::
error
(
$e
);
DB
::
rollBack
();
return
Redirect
::
route
(
'kategori.index'
)
->
with
(
'error'
,
'Data kategori gagal dihapus'
);
}
}
}
resources/views/Admin/login.blade.php
deleted
100644 → 0
View file @
522186eb
<!DOCTYPE html>
<html
class=
"loading"
lang=
"en"
data-textdirection=
"ltr"
>
<!-- BEGIN: Head-->
<head>
<link
rel=
"apple-touch-icon"
href=
"{{ url('theme/images/ico/apple-icon-120.png') }}"
>
<link
rel=
"shortcut icon"
type=
"image/x-icon"
href=
"{{ url('theme/images/ico/favicon.ico') }}"
>
<link
href=
"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500;1,600"
rel=
"stylesheet"
>
<meta
http-equiv=
"Content-Type"
charset=
"utf-8"
>
<meta
name=
"universitas-negeri-surabaya"
content=
"custom"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<meta
name=
"description"
content=
"Golden Ticket UNESA"
>
<meta
name=
"author"
content=
"PPTI Unesa Surabaya"
>
<meta
name=
"keywords"
content=
"sistem, informasi, unesa, seleksi, penerimaan, mahasiswa, maba"
>
<meta
name=
"language"
content=
"id"
>
<meta
name=
"geo.region"
content=
"ID"
/>
<meta
name=
"geo.position"
content=
"-7.300818;112.672689"
>
<meta
name=
"geo.placename"
content=
"Surabaya"
>
<meta
name=
"geo.region"
content=
"Indonesia"
>
<title>
Golden Ticket UNESA
</title>
<!-- BEGIN: Vendor CSS-->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/vendors/css/vendors.min.css') }}"
>
<!-- END: Vendor CSS-->
<!-- BEGIN: Theme CSS-->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/bootstrap.css') }}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/bootstrap-extended.css') }}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/colors.css') }}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/components.css') }}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/themes/dark-layout.css') }}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/themes/bordered-layout.css') }}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/themes/semi-dark-layout.css') }}"
>
<!-- BEGIN: Page CSS-->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/core/menu/menu-types/horizontal-menu.css') }}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/plugins/forms/form-validation.css') }}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/css/pages/authentication.css') }}"
>
<!-- END: Page CSS-->
<!-- BEGIN: Custom CSS-->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url('theme/assets/css/style.css') }}"
>
<!-- END: Custom CSS-->
</head>
<!-- END: Head-->
<!-- BEGIN: Body-->
<body
class=
"horizontal-layout horizontal-menu blank-page navbar-floating footer-static "
data-open=
"hover"
data-menu=
"horizontal-menu"
data-col=
"blank-page"
>
<!-- BEGIN: Content-->
<div
class=
"app-content content "
>
<div
class=
"content-overlay"
></div>
<div
class=
"header-navbar-shadow"
></div>
<div
class=
"content-wrapper"
>
<div
class=
"content-header row"
>
</div>
<div
class=
"content-body"
>
<div
class=
"auth-wrapper auth-basic px-2"
>
<div
class=
"auth-inner my-2"
>
<!-- Login basic -->
<div
class=
"card mb-0"
>
<div
class=
"card-body"
>
<a
href=
"index.html"
class=
"brand-logo"
>
{{--
<img
src=
"{{ url('theme/images/logo/logoumc.png') }}"
width=
"40%"
>
--}}
<h2
class=
"brand-text text-primary ms-1"
>
Golden Ticket
</h2>
</a>
<form
class=
"text-left"
method=
"POST"
action=
"{{ route('login') }}"
>
@csrf
<div
class=
"mb-1"
>
<label
for=
"login-email"
class=
"form-label"
>
Email
</label>
<input
id=
"email"
name=
"email"
type=
"text"
class=
"form-control"
placeholder=
"Email"
:value=
"old('email')"
required
autofocus
>
</div>
<div
class=
"mb-1"
>
<div
class=
"d-flex justify-content-between"
>
<label
class=
"form-label"
for=
"login-password"
>
Password
</label>
</div>
<div
class=
"input-group input-group-merge form-password-toggle"
>
<input
id=
"password"
name=
"password"
type=
"password"
class=
"form-control"
placeholder=
"Password"
required
autocomplete=
"current-password"
>
<span
class=
"input-group-text cursor-pointer"
><i
data-feather=
"eye"
></i></span>
</div>
</div>
<button
class=
"btn btn-primary w-100"
tabindex=
"4"
>
Login
</button>
</form>
</br>
</div>
</div>
<!-- /Login basic -->
</div>
</div>
</div>
</div>
</div>
<!-- END: Content-->
<!-- BEGIN: Vendor JS-->
<script
src=
"{{ url('theme/vendors/js/vendors.min.js') }}"
></script>
<!-- BEGIN Vendor JS-->
<!-- BEGIN: Page Vendor JS-->
<script
src=
"{{ url('theme/vendors/js/ui/jquery.sticky.js') }}"
></script>
<script
src=
"{{ url('theme/vendors/js/forms/validation/jquery.validate.min.js') }}"
></script>
<!-- END: Page Vendor JS-->
<!-- BEGIN: Theme JS-->
<script
src=
"{{ url('theme/js/core/app-menu.js') }}"
></script>
<script
src=
"{{ url('theme/js/core/app.js') }}"
></script>
<!-- END: Theme JS-->
<!-- BEGIN: Page JS-->
<script
src=
"{{ url('theme/js/scripts/pages/auth-login.js') }}"
></script>
<!-- END: Page JS-->
<script>
$
(
window
).
on
(
'load'
,
function
()
{
if
(
feather
)
{
feather
.
replace
({
width
:
14
,
height
:
14
});
}
})
</script>
</body>
<!-- END: Body-->
</html>
resources/views/dashboard.blade.php
deleted
100644 → 0
View file @
522186eb
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