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
f675d949
Commit
f675d949
authored
Apr 29, 2021
by
Farendi Giotivano R.P
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
data master & profile
parent
62ca53a2
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
860 additions
and
82 deletions
+860
-82
app/Http/Controllers/Admin/BidangKepakaranController.php
+178
-0
app/Http/Controllers/Admin/BidangPenelitianController.php
+4
-3
app/Http/Controllers/Admin/TujuanSosialController.php
+178
-0
app/Http/Controllers/Authentication/LoginController.php
+3
-3
app/Http/Controllers/User/KontrakKerjaController.php
+3
-2
app/Models/Admin/MsTujuanSosial.php
+5
-0
app/Repositories/Admin/MsBidangKepakaranKategoriRepository.php
+0
-0
app/Repositories/Admin/MsBidangKepakaranRepository.php
+0
-0
app/Repositories/Admin/MsTujuanSosialKategoriRepository.php
+30
-0
resources/views/admin/bidang/kategori.blade.php
+28
-1
resources/views/admin/kepakaran/index.blade.php
+97
-0
resources/views/admin/kepakaran/kategori.blade.php
+95
-0
resources/views/admin/tujuan/index.blade.php
+29
-3
resources/views/admin/tujuan/kategori.blade.php
+95
-0
resources/views/admin/user/index.blade.php
+2
-2
resources/views/auth/login.blade.php
+7
-7
resources/views/dashboard.blade.php
+2
-23
resources/views/layouts/css.blade.php
+2
-0
resources/views/layouts/master.blade.php
+3
-2
resources/views/layouts/menuadmin.blade.php
+12
-1
resources/views/profile/show.blade.php
+75
-35
routes/web.php
+12
-0
No files found.
app/Http/Controllers/Admin/BidangKepakaranController.php
0 → 100644
View file @
f675d949
<?php
namespace
App\Http\Controllers\Admin
;
use
Alert
;
use
Crypt
;
use
App\Http\Controllers\Controller
;
use
App\Repositories\Admin\MsBidangKepakaranKategoriRepository
;
use
App\Repositories\Admin\MsBidangKepakaranRepository
;
use
Illuminate\Http\Request
;
class
BidangKepakaranController
extends
Controller
{
private
$bidangkepakaranRepo
;
private
$bidangkepakarankategoriRepo
;
public
function
__construct
(
MsBidangKepakaranKategoriRepository
$bidangkepakarankategoriRepo
,
MsBidangKepakaranRepository
$bidangkepakaranRepo
)
{
$this
->
bidangkepakaranRepo
=
$bidangkepakaranRepo
;
$this
->
bidangkepakarankategoriRepo
=
$bidangkepakarankategoriRepo
;
}
public
function
index
()
{
//
$menu
=
'bidangkepakaran'
;
$bidangkepakaran
=
$this
->
bidangkepakaranRepo
->
get
([
'rKategori'
]);
$bidangkepakarankategori
=
$this
->
bidangkepakarankategoriRepo
->
get
();
//dd($bidangkepakarankategori);
$data
=
[
'bidangkepakaran'
=>
$bidangkepakaran
,
'bidangkepakarankategori'
=>
$bidangkepakarankategori
,
'menu'
=>
$menu
];
return
view
(
'admin.bidang.index'
,
$data
);
}
public
function
bidangkategori
()
{
//
$menu
=
'bidangkepakaran'
;
$bidangkepakarankategori
=
$this
->
bidangkepakarankategoriRepo
->
get
();
//dd($bidangkepakarankategori);
$data
=
[
'bidangkepakarankategori'
=>
$bidangkepakarankategori
,
'menu'
=>
$menu
];
return
view
(
'admin.bidang.kategori'
,
$data
);
}
public
function
create
()
{
//
return
view
(
'admin.bidangkepakaran.create'
);
}
public
function
store
(
Request
$request
)
{
//
$data
=
$request
->
except
(
'_token'
);
$data
[
'user_id'
]
=
auth
()
->
user
()
->
id
;
$bidangkepakaran
=
$this
->
bidangkepakaranRepo
->
store
(
$data
);
$data
=
[
'bidangkepakaran'
=>
$bidangkepakaran
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'bidangkepakaran berhasil disimpan'
);
return
redirect
()
->
route
(
'admin.bidangkepakaran.index'
,
$data
);
}
public
function
kategoristore
(
Request
$request
)
{
//
$data
=
$request
->
except
(
'_token'
);
$data
[
'user_id'
]
=
auth
()
->
user
()
->
id
;
$bidangkepakarankategori
=
$this
->
bidangkepakarankategoriRepo
->
store
(
$data
);
$data
=
[
'bidangkepakarankategori'
=>
$bidangkepakarankategori
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'Kategori Bidang kepakaran berhasil disimpan'
);
return
redirect
()
->
route
(
'admin.bidang.kategori'
,
$data
);
}
public
function
show
(
$id
)
{
//
}
public
function
edit
(
$id
)
{
//
$menu
=
'bidangkepakaran'
;
$bidangkepakaran
=
$this
->
bidangkepakaranRepo
->
findId
(
null
,
$id
);
$data
=
[
'menu'
=>
$menu
,
'bidangkepakaran'
=>
$bidangkepakaran
,
];
return
view
(
'admin.bidang.edit'
,
$data
);
}
public
function
kategoriedit
(
$id
)
{
//
$menu
=
'bidangkepakarankategori'
;
$bidangkepakarankategori
=
$this
->
bidangkepakarankategoriRepo
->
findId
(
null
,
$id
);
$data
=
[
'menu'
=>
$menu
,
'bidangkepakarankategori'
=>
$bidangkepakarankategori
,
];
return
view
(
'admin.bidang.edit'
,
$data
);
}
public
function
update
(
Request
$request
,
$id
)
{
//
$data
=
$request
->
except
(
'_token'
);
$data
[
'userid_updated'
]
=
auth
()
->
user
()
->
id
;
$bidangkepakaran
=
$this
->
bidangkepakaranRepo
->
findId
(
null
,
$id
);
$this
->
bidangkepakaranRepo
->
update
(
$data
,
$bidangkepakaran
);
$data
=
[
'bidangkepakaran'
=>
$bidangkepakaran
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'bidangkepakaran berhasil diupdated'
);
return
redirect
()
->
route
(
'bidang.index'
,
$data
);
}
public
function
kategoriupdate
(
Request
$request
,
$id
)
{
//
$data
=
$request
->
except
(
'_token'
);
$data
[
'userid_updated'
]
=
auth
()
->
user
()
->
id
;
$bidangkepakarankategori
=
$this
->
bidangkepakarankategoriRepo
->
findId
(
null
,
$id
);
$this
->
bidangkepakarankategoriRepo
->
update
(
$data
,
$bidangkepakarankategori
);
$data
=
[
'bidangkepakarankategori'
=>
$bidangkepakarankategori
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'bidangkepakarankategori berhasil diupdated'
);
return
redirect
()
->
route
(
'bidang.index'
,
$data
);
}
public
function
destroy
(
$id
)
{
//
$model
=
$this
->
bidangkepakaranRepo
->
findId
(
null
,
Crypt
::
decrypt
(
$id
));
$this
->
bidangkepakaranRepo
->
destroy
(
$model
);
Alert
::
success
(
'Data berhasil dihapus'
)
->
persistent
(
'Ok'
);
return
redirect
()
->
route
(
'bidang.index'
);
}
}
app/Http/Controllers/Admin/BidangPenelitianController.php
View file @
f675d949
...
...
@@ -12,6 +12,7 @@ use Illuminate\Http\Request;
class
BidangPenelitianController
extends
Controller
{
private
$bidangpenelitianRepo
;
private
$bidangpenelitiankategoriRepo
;
public
function
__construct
(
MsBidangPenelitianKategoriRepository
$bidangpenelitiankategoriRepo
,
...
...
@@ -116,13 +117,13 @@ class BidangPenelitianController extends Controller
public
function
kategoriedit
(
$id
)
{
//
$menu
=
'bidangpenelitian'
;
$bidangpenelitian
=
$this
->
bidangpenelitian
Repo
->
findId
(
null
,
$id
);
$menu
=
'bidangpenelitian
kategori
'
;
$bidangpenelitian
kategori
=
$this
->
bidangpenelitiankategori
Repo
->
findId
(
null
,
$id
);
$data
=
[
'menu'
=>
$menu
,
'bidangpenelitian
'
=>
$bidangpenelitian
,
'bidangpenelitian
kategori'
=>
$bidangpenelitiankategori
,
];
return
view
(
'admin.bidang.edit'
,
$data
);
...
...
app/Http/Controllers/Admin/TujuanSosialController.php
View file @
f675d949
<?php
namespace
App\Http\Controllers\Admin
;
use
Alert
;
use
Crypt
;
use
App\Http\Controllers\Controller
;
use
App\Repositories\Admin\MsTujuanSosialKategoriRepository
;
use
App\Repositories\Admin\MsTujuanSosialRepository
;
use
Illuminate\Http\Request
;
class
TujuanSosialController
extends
Controller
{
private
$tujuansosialRepo
;
private
$tujuansosialkategoriRepo
;
public
function
__construct
(
MsTujuanSosialKategoriRepository
$tujuansosialkategoriRepo
,
MsTujuanSosialRepository
$tujuansosialRepo
)
{
$this
->
tujuansosialRepo
=
$tujuansosialRepo
;
$this
->
tujuansosialkategoriRepo
=
$tujuansosialkategoriRepo
;
}
public
function
index
()
{
//
$menu
=
'tujuansosial'
;
$tujuansosial
=
$this
->
tujuansosialRepo
->
get
([
'rKategori'
]);
$tujuansosialkategori
=
$this
->
tujuansosialkategoriRepo
->
get
();
//dd($tujuansosialkategori);
$data
=
[
'tujuansosial'
=>
$tujuansosial
,
'tujuansosialkategori'
=>
$tujuansosialkategori
,
'menu'
=>
$menu
];
return
view
(
'admin.tujuan.index'
,
$data
);
}
public
function
tujuankategori
()
{
//
$menu
=
'tujuansosial'
;
$tujuansosialkategori
=
$this
->
tujuansosialkategoriRepo
->
get
();
//dd($tujuansosialkategori);
$data
=
[
'tujuansosialkategori'
=>
$tujuansosialkategori
,
'menu'
=>
$menu
];
return
view
(
'admin.tujuan.kategori'
,
$data
);
}
public
function
create
()
{
//
return
view
(
'admin.tujuan.create'
);
}
public
function
store
(
Request
$request
)
{
//
$data
=
$request
->
except
(
'_token'
);
$data
[
'user_id'
]
=
auth
()
->
user
()
->
id
;
$tujuansosial
=
$this
->
tujuansosialRepo
->
store
(
$data
);
$data
=
[
'tujuansosial'
=>
$tujuansosial
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'tujuansosial berhasil disimpan'
);
return
redirect
()
->
route
(
'admin.tujuansosial.index'
,
$data
);
}
public
function
kategoristore
(
Request
$request
)
{
//
$data
=
$request
->
except
(
'_token'
);
$data
[
'user_id'
]
=
auth
()
->
user
()
->
id
;
$tujuansosialkategori
=
$this
->
tujuansosialkategoriRepo
->
store
(
$data
);
$data
=
[
'tujuansosialkategori'
=>
$tujuansosialkategori
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'Kategori Tujuan Sosial berhasil disimpan'
);
return
redirect
()
->
route
(
'admin.tujuan.kategori'
,
$data
);
}
public
function
show
(
$id
)
{
//
}
public
function
edit
(
$id
)
{
//
$menu
=
'tujuansosial'
;
$tujuansosial
=
$this
->
tujuansosialRepo
->
findId
(
null
,
$id
);
$data
=
[
'menu'
=>
$menu
,
'tujuansosial'
=>
$tujuansosial
,
];
return
view
(
'admin.tujuan.edit'
,
$data
);
}
public
function
kategoriedit
(
$id
)
{
//
$menu
=
'tujuansosialkategori'
;
$tujuansosialkategori
=
$this
->
tujuansosialkategoriRepo
->
findId
(
null
,
$id
);
$data
=
[
'menu'
=>
$menu
,
'tujuansosialkategori'
=>
$tujuansosialkategori
,
];
return
view
(
'admin.tujuan.edit'
,
$data
);
}
public
function
update
(
Request
$request
,
$id
)
{
//
$data
=
$request
->
except
(
'_token'
);
$data
[
'userid_updated'
]
=
auth
()
->
user
()
->
id
;
$tujuansosial
=
$this
->
tujuansosialRepo
->
findId
(
null
,
$id
);
$this
->
tujuansosialRepo
->
update
(
$data
,
$tujuansosial
);
$data
=
[
'tujuansosial'
=>
$tujuansosial
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'tujuansosial berhasil diupdated'
);
return
redirect
()
->
route
(
'tujuansosial.index'
,
$data
);
}
public
function
tujuanupdate
(
Request
$request
,
$id
)
{
//
$data
=
$request
->
except
(
'_token'
);
$data
[
'userid_updated'
]
=
auth
()
->
user
()
->
id
;
$tujuansosialkategori
=
$this
->
tujuansosialkategoriRepo
->
findId
(
null
,
$id
);
$this
->
tujuansosialkategoriRepo
->
update
(
$data
,
$tujuansosialkategori
);
$data
=
[
'tujuansosialkategori'
=>
$tujuansosialkategori
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'tujuansosialkategori berhasil diupdated'
);
return
redirect
()
->
route
(
'tujuansosial.index'
,
$data
);
}
public
function
destroy
(
$id
)
{
//
$model
=
$this
->
tujuansosialRepo
->
findId
(
null
,
Crypt
::
decrypt
(
$id
));
$this
->
tujuansosialRepo
->
destroy
(
$model
);
Alert
::
success
(
'Data berhasil dihapus'
)
->
persistent
(
'Ok'
);
return
redirect
()
->
route
(
'tujuansosial.index'
);
}
}
app/Http/Controllers/Authentication/LoginController.php
View file @
f675d949
...
...
@@ -56,7 +56,7 @@ class LoginController extends Controller
$this
->
getadduser
(
$auth
);
return
redirect
()
->
route
(
'
home
'
);
return
redirect
()
->
route
(
'
dashboard
'
);
}
}
...
...
@@ -91,7 +91,7 @@ class LoginController extends Controller
{
Auth
::
loginUsingId
(
$userid
);
return
redirect
()
->
to
(
'/
'
);
return
redirect
()
->
intended
(
'dashboard
'
);
}
private
function
getAdduser
(
$auth
)
...
...
@@ -109,7 +109,7 @@ class LoginController extends Controller
DB
::
commit
();
return
redirect
()
->
intended
(
'
/
'
);
return
redirect
()
->
intended
(
'
dashboard
'
);
}
catch
(
Exception
$ex
)
{
DB
::
rollBack
();
}
...
...
app/Http/Controllers/User/KontrakKerjaController.php
View file @
f675d949
...
...
@@ -2,7 +2,7 @@
namespace
App\Http\Controllers\User
;
use
Alert
;
use
UxWeb\SweetAlert\SweetAlert
as
Alert
;
use
App\Http\Controllers\Controller
;
use
App\Repositories\User\KontrakKerjaRepository
;
use
Crypt
;
...
...
@@ -115,7 +115,8 @@ class KontrakKerjaController extends Controller
'kontrakkerja'
=>
$kontrakkerja
->
id
,
];
Alert
::
success
(
'Berhasil'
,
'Kontrak Kerja berhasil diupdated'
);
//Alert::success('Berhasil', 'Kontrak Kerja berhasil diupdated');
alert
()
->
warning
(
'Berhasil'
,
'Kontrak Kerja berhasil diupdated'
);
return
redirect
()
->
route
(
'kontrakkerja.index'
,
$data
);
}
...
...
app/Models/Admin/MsTujuanSosial.php
View file @
f675d949
...
...
@@ -16,4 +16,9 @@ class MsTujuanSosial extends Model
protected
$keyType
=
'string'
;
protected
$fillable
=
[
'nama'
,
'created_at'
,
'updated_at'
,
'userid_created'
,
'userid_updated'
];
public
function
rKategori
()
{
return
$this
->
belongsTo
(
MsTujuanSosialKategori
::
class
,
'id_tujuan_kategori'
,
'id'
);
}
}
app/Repositories/Admin/MsBidangKepakaranKategoriRepository.php
0 → 100644
View file @
f675d949
app/Repositories/Admin/MsBidangKepakaranRepository.php
0 → 100644
View file @
f675d949
app/Repositories/Admin/MsTujuanSosialKategoriRepository.php
0 → 100644
View file @
f675d949
<?php
namespace
App\Repositories\Admin
;
use
App\Models\Admin\MsTujuanSosialKategori
;
use
App\Repositories\Repository
;
class
MsTujuanSosialKategoriRepository
extends
Repository
{
protected
$model
;
public
function
__construct
(
MsTujuanSosialKategori
$model
)
{
$this
->
model
=
$model
;
}
public
function
get
(
$with
=
null
,
$search
=
null
,
$id
=
null
)
{
return
$this
->
model
->
when
(
$with
,
function
(
$query
)
use
(
$with
)
{
return
$query
->
with
(
$with
);
})
->
when
(
$search
,
function
(
$query
)
use
(
$search
)
{
return
$query
->
where
(
'search'
,
$search
);
})
->
when
(
$id
,
function
(
$query
)
use
(
$id
)
{
return
$query
->
where
(
'id'
,
$id
);
})
->
get
();
}
}
resources/views/admin/bidang/kategori.blade.php
View file @
f675d949
...
...
@@ -34,7 +34,7 @@
<td>{{
$no
++ }}</td>
<td>{{
$value->namabidang
}}</td>
<td>
<
a href="
{{
url
(
'bidangpenelitian/'
.
$value
->
id
.
'/edit'
)
}}
" class="
btn
btn
-
warning
mb
-
2
"><i data-feather="
edit
"></i></a
>
<
button type="
button
" data-target="
#edit" data-toggle="modal" class="btn btn-warning mb-2"><i data-feather="edit"></i></button
>
{{
--
<
button
class
="
btn
btn
-
danger
mb
-
2
delete
" data-id="
{{
$value
->
id
}}
" data-file="
{{
$value
->
id
}}
"><i data-feather="
trash
-
2
"></i></button>
{{ Form::open(['url'=>route('admin.bidangpenelitian.destroy', [Crypt::encrypt(
$value->id
)]), 'method'=>'delete', 'id' =>
$value->id
, 'style' => 'display: none;']) }}
{{ csrf_field() }}
...
...
@@ -75,6 +75,32 @@
</div>
</div>
<div class="
modal
fade
" id="
edit
" tabindex="
-
1
" role="
dialog
" aria-labelledby="
ModalUpdate
" aria-hidden="
true
">
<div class="
modal
-
dialog
modal
-
dialog
-
centered
" role="
document
">
<div class="
modal
-
content
">
<div class="
modal
-
header
">
<h5 class="
modal
-
title
" id="
ModalUpdate
">Edit Kategori Bidang Penelitian</h5>
<button type="
button
" class="
close
" data-dismiss="
modal
" aria-label="
Close
">
<svg aria-hidden="
true
" xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
x
"><line x1="
18
" y1="
6
" x2="
6
" y2="
18
"></line><line x1="
6
" y1="
6
" x2="
18
" y2="
18
"></line></svg>
</button>
</div>
{{ Form::open(['method' => 'post', 'class' => 'section general-info', 'id' => 'updatekategori']) }}
<div class="
modal
-
body
">
<div class="
form
-
group
">
<label>Nama Kategori Bidang Penelitian</label>
<input type="
hidden
" class="
form
-
control
mb
-
2
" id="
id
" name="
id
">
<input type="
text
" class="
form
-
control
mb
-
2
" id="
nama
" name="
nama
" placeholder="
Nama
Kategori
Bidang
Penelitian
">
</div>
</div>
<div class="
modal
-
footer
">
<button class="
btn
" data-dismiss="
modal
"><i class="
flaticon
-
cancel
-
12
"></i> Batal</button>
<button type="
submit
" id="
submit
" class="
btn
btn
-
primary
">Save</button>
</div>
{{ Form::close() }}
</div>
</div>
</div>
@endsection
@section('js')
...
...
@@ -116,5 +142,6 @@
}
});
});
</
script
>
@
endsection
resources/views/admin/kepakaran/index.blade.php
0 → 100644
View file @
f675d949
@
extends
(
'layouts.master'
)
@
section
(
'title'
)
Master
Tujuan
Sosial
Ekonomi
@
endsection
@
section
(
'header'
)
<
div
class
="
page
-
title
">
<h3>Tujuan Sosial Ekonomi</h3>
</div>
@endsection
@section('contents')
@php
$menu
= 'dashboard';
@endphp
<div class="
row
layout
-
top
-
spacing
" id="
cancel
-
row
">
<div class="
col
-
xl
-
12
col
-
lg
-
12
col
-
sm
-
12
layout
-
spacing
">
<div class="
widget
-
content
widget
-
content
-
area
br
-
6
">
<div class="
table
-
responsive
mb
-
4
mt
-
4
">
<button type="
button
" data-target="
#tambah" data-toggle="modal" class="btn btn-primary mb-2"><i data-feather="file-plus"></i> Tambah</button>
<
table
id
=
"zero-config"
class
="
table
table
-
hover
" style="
width
:
100
%
">
<thead>
<tr>
<th>No</th>
<th>Kategori</th>
<th>Bidang Kepakaran</th>
<th style="
width
:
15
%
">Aksi</th>
</tr>
</thead>
<tbody>
@php
$no
= 1; @endphp
@foreach (
$bidangkepakaran
as
$value
)
<tr>
<td>{{
$no
++ }}</td>
<td>{{
$value->rKategori
->namabidang }}</td>
<td>{{
$value->nama
}}</td>
<td>
{{-- <a href="
{{
url
(
'bidangkepakaran/'
.
$value
->
id
.
'/edit'
)
}}
" class="
btn
btn
-
warning
mb
-
2
"><i data-feather="
edit
"></i></a> | --}}
<button class="
btn
btn
-
danger
mb
-
2
delete
" data-id="
{{
$value
->
id
}}
" data-file="
{{
$value
->
id
}}
"><i data-feather="
trash
-
2
"></i></button>
{{ Form::open(['url'=>route('admin.bidangkepakaran.destroy', [Crypt::encrypt(
$value->id
)]), 'method'=>'delete', 'id' =>
$value->id
, 'style' => 'display: none;']) }}
{{ csrf_field() }}
{{ Form::close() }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@section('js')
<script src="
{{
url
(
'theme/plugins/table/datatable/datatables.js'
)
}}
"></script>
<script>
$('#zero-config').DataTable({
"
oLanguage
": {
"
oPaginate
": { "
sPrevious
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
arrow
-
left
"><line x1="
19
" y1="
12
" x2="
5
" y2="
12
"></line><polyline points="
12
19
5
12
12
5
"></polyline></svg>', "
sNext
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
arrow
-
right
"><line x1="
5
" y1="
12
" x2="
19
" y2="
12
"></line><polyline points="
12
5
19
12
12
19
"></polyline></svg>' },
"
sInfo
": "
Showing
page
_PAGE_
of
_PAGES_
",
"
sSearch
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
search
"><circle cx="
11
" cy="
11
" r="
8
"></circle><line x1="
21
" y1="
21
" x2="
16.65
" y2="
16.65
"></line></svg>',
"
sSearchPlaceholder
": "
Search
...
",
"
sLengthMenu
": "
Results
:
_MENU_
",
},
"
stripeClasses
": [],
"
lengthMenu
": [10, 20, 50],
"
pageLength
": 10
});
var url = "
{{
route
(
'admin.tujuansosial.index'
)
}}
";
$("
body
").on("
click
", "
.
delete
", function (e) {
e.preventDefault();
var id = $(this).data('id');
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
resources/views/admin/kepakaran/kategori.blade.php
0 → 100644
View file @
f675d949
@
extends
(
'layouts.master'
)
@
section
(
'title'
)
Master
Tujuan
Sosial
Ekonomi
@
endsection
@
section
(
'header'
)
<
div
class
="
page
-
title
">
<h3>Tujuan Sosial Ekonomi</h3>
</div>
@endsection
@section('contents')
@php
$menu
= 'dashboard';
@endphp
<div class="
row
layout
-
top
-
spacing
" id="
cancel
-
row
">
<div class="
col
-
xl
-
12
col
-
lg
-
12
col
-
sm
-
12
layout
-
spacing
">
<div class="
widget
-
content
widget
-
content
-
area
br
-
6
">
<div class="
table
-
responsive
mb
-
4
mt
-
4
">
<button type="
button
" data-target="
#tambah" data-toggle="modal" class="btn btn-primary mb-2"><i data-feather="file-plus"></i> Tambah</button>
<
table
id
=
"zero-config"
class
="
table
table
-
hover
" style="
width
:
100
%
">
<thead>
<tr>
<th>No</th>
<th>Bidang Kepakaran</th>
<th style="
width
:
15
%
">Aksi</th>
</tr>
</thead>
<tbody>
@php
$no
= 1; @endphp
@foreach (
$bidangkepakarankategori
as
$value
)
<tr>
<td>{{
$no
++ }}</td>
<td>{{
$value->namabidang
}}</td>
<td>
{{-- <a href="
{{
url
(
'bidangkepakarankategori/'
.
$value
->
id
.
'/edit'
)
}}
" class="
btn
btn
-
warning
mb
-
2
"><i data-feather="
edit
"></i></a> | --}}
<button class="
btn
btn
-
danger
mb
-
2
delete
" data-id="
{{
$value
->
id
}}
" data-file="
{{
$value
->
id
}}
"><i data-feather="
trash
-
2
"></i></button>
{{ Form::open(['url'=>route('admin.bidangkepakarankategori.destroy', [Crypt::encrypt(
$value->id
)]), 'method'=>'delete', 'id' =>
$value->id
, 'style' => 'display: none;']) }}
{{ csrf_field() }}
{{ Form::close() }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@section('js')
<script src="
{{
url
(
'theme/plugins/table/datatable/datatables.js'
)
}}
"></script>
<script>
$('#zero-config').DataTable({
"
oLanguage
": {
"
oPaginate
": { "
sPrevious
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
arrow
-
left
"><line x1="
19
" y1="
12
" x2="
5
" y2="
12
"></line><polyline points="
12
19
5
12
12
5
"></polyline></svg>', "
sNext
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
arrow
-
right
"><line x1="
5
" y1="
12
" x2="
19
" y2="
12
"></line><polyline points="
12
5
19
12
12
19
"></polyline></svg>' },
"
sInfo
": "
Showing
page
_PAGE_
of
_PAGES_
",
"
sSearch
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
search
"><circle cx="
11
" cy="
11
" r="
8
"></circle><line x1="
21
" y1="
21
" x2="
16.65
" y2="
16.65
"></line></svg>',
"
sSearchPlaceholder
": "
Search
...
",
"
sLengthMenu
": "
Results
:
_MENU_
",
},
"
stripeClasses
": [],
"
lengthMenu
": [10, 20, 50],
"
pageLength
": 10
});
var url = "
{{
route
(
'admin.tujuansosial.index'
)
}}
";
$("
body
").on("
click
", "
.
delete
", function (e) {
e.preventDefault();
var id = $(this).data('id');
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
resources/views/admin/tujuan/index.blade.php
View file @
f675d949
...
...
@@ -18,8 +18,34 @@
<div class="
col
-
xl
-
12
col
-
lg
-
12
col
-
sm
-
12
layout
-
spacing
">
<div class="
widget
-
content
widget
-
content
-
area
br
-
6
">
<div class="
table
-
responsive
mb
-
4
mt
-
4
">
{{-- table --}}
<button type="
button
" data-target="
#tambah" data-toggle="modal" class="btn btn-primary mb-2"><i data-feather="file-plus"></i> Tambah</button>
<
table
id
=
"zero-config"
class
="
table
table
-
hover
" style="
width
:
100
%
">
<thead>
<tr>
<th>No</th>
<th>Kategori</th>
<th>Bidang Penelitian</th>
<th style="
width
:
15
%
">Aksi</th>
</tr>
</thead>
<tbody>
@php
$no
= 1; @endphp
@foreach (
$tujuansosial
as
$value
)
<tr>
<td>{{
$no
++ }}</td>
<td>{{
$value->rKategori
->namatujuan }}</td>
<td>{{
$value->nama
}}</td>
<td>
{{-- <a href="
{{
url
(
'tujuansosial/'
.
$value
->
id
.
'/edit'
)
}}
" class="
btn
btn
-
warning
mb
-
2
"><i data-feather="
edit
"></i></a> | --}}
<button class="
btn
btn
-
danger
mb
-
2
delete
" data-id="
{{
$value
->
id
}}
" data-file="
{{
$value
->
id
}}
"><i data-feather="
trash
-
2
"></i></button>
{{ Form::open(['url'=>route('admin.tujuansosial.destroy', [Crypt::encrypt(
$value->id
)]), 'method'=>'delete', 'id' =>
$value->id
, 'style' => 'display: none;']) }}
{{ csrf_field() }}
{{ Form::close() }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
...
...
@@ -44,7 +70,7 @@
"
pageLength
": 10
});
var url = "
{{
route
(
'
user
.index'
)
}}
";
var url = "
{{
route
(
'
admin.tujuansosial
.index'
)
}}
";
$("
body
").on("
click
", "
.
delete
", function (e) {
e.preventDefault();
...
...
resources/views/admin/tujuan/kategori.blade.php
0 → 100644
View file @
f675d949
@
extends
(
'layouts.master'
)
@
section
(
'title'
)
Master
Tujuan
Sosial
Ekonomi
@
endsection
@
section
(
'header'
)
<
div
class
="
page
-
title
">
<h3>Tujuan Sosial Ekonomi</h3>
</div>
@endsection
@section('contents')
@php
$menu
= 'dashboard';
@endphp
<div class="
row
layout
-
top
-
spacing
" id="
cancel
-
row
">
<div class="
col
-
xl
-
12
col
-
lg
-
12
col
-
sm
-
12
layout
-
spacing
">
<div class="
widget
-
content
widget
-
content
-
area
br
-
6
">
<div class="
table
-
responsive
mb
-
4
mt
-
4
">
<button type="
button
" data-target="
#tambah" data-toggle="modal" class="btn btn-primary mb-2"><i data-feather="file-plus"></i> Tambah</button>
<
table
id
=
"zero-config"
class
="
table
table
-
hover
" style="
width
:
100
%
">
<thead>
<tr>
<th>No</th>
<th>Kategori</th>
<th style="
width
:
15
%
">Aksi</th>
</tr>
</thead>
<tbody>
@php
$no
= 1; @endphp
@foreach (
$tujuansosialkategori
as
$value
)
<tr>
<td>{{
$no
++ }}</td>
<td>{{
$value->namatujuan
}}</td>
<td>
<a href="
{{
url
(
'tujuansosialkategori/'
.
$value
->
id
.
'/edit'
)
}}
" class="
btn
btn
-
warning
mb
-
2
"><i data-feather="
edit
"></i></a> |
{{-- <button class="
btn
btn
-
danger
mb
-
2
delete
" data-id="
{{
$value
->
id
}}
" data-file="
{{
$value
->
id
}}
"><i data-feather="
trash
-
2
"></i></button>
{{ Form::open(['url'=>route('admin.tujuansosialkategori.destroy', [Crypt::encrypt(
$value->id
)]), 'method'=>'delete', 'id' =>
$value->id
, 'style' => 'display: none;']) }}
{{ csrf_field() }}
{{ Form::close() }} --}}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@section('js')
<script src="
{{
url
(
'theme/plugins/table/datatable/datatables.js'
)
}}
"></script>
<script>
$('#zero-config').DataTable({
"
oLanguage
": {
"
oPaginate
": { "
sPrevious
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
arrow
-
left
"><line x1="
19
" y1="
12
" x2="
5
" y2="
12
"></line><polyline points="
12
19
5
12
12
5
"></polyline></svg>', "
sNext
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
arrow
-
right
"><line x1="
5
" y1="
12
" x2="
19
" y2="
12
"></line><polyline points="
12
5
19
12
12
19
"></polyline></svg>' },
"
sInfo
": "
Showing
page
_PAGE_
of
_PAGES_
",
"
sSearch
": '<svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
search
"><circle cx="
11
" cy="
11
" r="
8
"></circle><line x1="
21
" y1="
21
" x2="
16.65
" y2="
16.65
"></line></svg>',
"
sSearchPlaceholder
": "
Search
...
",
"
sLengthMenu
": "
Results
:
_MENU_
",
},
"
stripeClasses
": [],
"
lengthMenu
": [10, 20, 50],
"
pageLength
": 10
});
var url = "
{{
route
(
'admin.tujuansosial.index'
)
}}
";
$("
body
").on("
click
", "
.
delete
", function (e) {
e.preventDefault();
var id = $(this).data('id');
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
resources/views/admin/user/index.blade.php
View file @
f675d949
...
...
@@ -138,7 +138,7 @@
function
removeRole
(
user_id
,
role_id
,
element
){
var
token
=
"{{ csrf_token() }}"
;
var
request
=
$
.
ajax
({
url
:
"{{ route('adminremove-role') }}"
,
url
:
"{{ route('admin
.
remove-role') }}"
,
type
:
"POST"
,
dataType
:
"html"
,
data
:
{
user_id
:
user_id
,
role_id
:
role_id
,
_token
:
token
},
...
...
@@ -151,7 +151,7 @@
var
token
=
"{{ csrf_token() }}"
;
var
role_id
=
$
(
'#select_'
+
user_token
)
.
val
();
var
request
=
$
.
ajax
({
url
:
"{{ route('adminadd-role') }}"
,
url
:
"{{ route('admin
.
add-role') }}"
,
type
:
"POST"
,
dataType
:
"html"
,
data
:
{
user_id
:
user_id
,
role_id
:
role_id
,
_token
:
token
},
...
...
resources/views/auth/login.blade.php
View file @
f675d949
...
...
@@ -17,7 +17,7 @@
</head>
<body
class=
"form no-image-content"
>
<div
class=
"form-container outer"
>
<div
class=
"form-form"
>
<div
class=
"form-form-wrap"
>
...
...
@@ -26,8 +26,9 @@
<h1
class=
""
>
Sign In
</h1>
<p
class=
""
>
Log in to your account to continue.
</p>
<form
class=
"text-left"
method=
"POST"
action=
"{{ route('login') }}"
>
@csrf
<div
class=
"form"
>
<div
id=
"username-field"
class=
"field-wrapper input"
>
...
...
@@ -54,20 +55,20 @@
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- BEGIN GLOBAL MANDATORY SCRIPTS -->
<script
src=
"{{ url('theme/assets/js/libs/jquery-3.1.1.min.js') }}"
></script>
<script
src=
"{{ url('theme/bootstrap/js/popper.min.js') }}"
></script>
<script
src=
"{{ url('theme/bootstrap/js/bootstrap.min.js') }}"
></script>
<!-- END GLOBAL MANDATORY SCRIPTS -->
<script
src=
"{{ url('theme/assets/js/authentication/form-2.js') }}"
></script>
</body>
</html>
\ No newline at end of file
</html>
resources/views/dashboard.blade.php
View file @
f675d949
...
...
@@ -38,29 +38,15 @@
<div class="
carousel
-
item
active
">
<img class="
d
-
block
w
-
100
slide
-
image
" src="
{{
url
(
'theme/assets/img/600x300.jpg'
)
}}
" alt="
First
slide
">
<div class="
carousel
-
caption
">
<span class="
badge
">
Lifestyle
</span>
<span class="
badge
">
Informasi
</span>
<h3>How To Make More Blog By Doing Less</h3>
<div class="
media
">
<img src="
assets
/
img
/
90
x90
.
jpg
" class="" alt="
avatar
">
<div class="
media
-
body
">
<h6 class="
user
-
name
">User name</h6>
<p class="
meta
-
time
"><svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
calendar
"><rect x="
3
" y="
4
" width="
18
" height="
18
" rx="
2
" ry="
2
"></rect><line x1="
16
" y1="
2
" x2="
16
" y2="
6
"></line><line x1="
8
" y1="
2
" x2="
8
" y2="
6
"></line><line x1="
3
" y1="
10
" x2="
21
" y2="
10
"></line></svg> Jan, 14 2020</p>
</div>
</div>
</div>
</div>
<div class="
carousel
-
item
">
<img class="
d
-
block
w
-
100
slide
-
image
" src="
{{
url
(
'theme/assets/img/600x300.jpg'
)
}}
" alt="
Second
slide
">
<div class="
carousel
-
caption
">
<span class="
badge
">
Lifestyle
</span>
<span class="
badge
">
Pengumuman
</span>
<h3>How To Make Blog</h3>
<div class="
media
">
<img src="
assets
/
img
/
90
x90
.
jpg
" class="" alt="
avatar
">
<div class="
media
-
body
">
<h6 class="
user
-
name
">User name</h6>
<p class="
meta
-
time
"><svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
calendar
"><rect x="
3
" y="
4
" width="
18
" height="
18
" rx="
2
" ry="
2
"></rect><line x1="
16
" y1="
2
" x2="
16
" y2="
6
"></line><line x1="
8
" y1="
2
" x2="
8
" y2="
6
"></line><line x1="
3
" y1="
10
" x2="
21
" y2="
10
"></line></svg> Jan, 14 2020</p>
</div>
</div>
</div>
</div>
<div class="
carousel
-
item
">
...
...
@@ -68,13 +54,6 @@
<div class="
carousel
-
caption
">
<span class="
badge
">Lifestyle</span>
<h3>Best Blog Android Apps</h3>
<div class="
media
">
<img src="
assets
/
img
/
90
x90
.
jpg
" class="" alt="
avatar
">
<div class="
media
-
body
">
<h6 class="
user
-
name
">User name</h6>
<p class="
meta
-
time
"><svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
calendar
"><rect x="
3
" y="
4
" width="
18
" height="
18
" rx="
2
" ry="
2
"></rect><line x1="
16
" y1="
2
" x2="
16
" y2="
6
"></line><line x1="
8
" y1="
2
" x2="
8
" y2="
6
"></line><line x1="
3
" y1="
10
" x2="
21
" y2="
10
"></line></svg> Jan, 14 2020</p>
</div>
</div>
</div>
</div>
</div>
...
...
resources/views/layouts/css.blade.php
View file @
f675d949
...
...
@@ -35,3 +35,5 @@
<link
href=
"{{ url('theme/assets/css/components/custom-carousel.css') }}"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"{{ url('theme/font-awesome/css/font-awesome.min.css') }}"
>
<link
href=
"{{ url('theme/assets/css/users/user-profile.css') }}"
rel=
"stylesheet"
type=
"text/css"
/>
resources/views/layouts/master.blade.php
View file @
f675d949
...
...
@@ -9,6 +9,7 @@
@include('layouts.css')
<script
src=
"{{ url('theme/assets/js/loader.js') }} "
></script>
<script
src=
"https://unpkg.com/sweetalert/dist/sweetalert.min.js"
></script>
</head>
<body
class=
"alt-menu sidebar-noneoverflow"
>
...
...
@@ -46,7 +47,7 @@
<div
class=
"dropdown-menu position-absolute animated fadeInUp"
aria-labelledby=
"user-profile-dropdown"
>
<div
class=
""
>
<div
class=
"dropdown-item"
>
<a
class=
""
href=
""
><i
data-feather=
"user"
></i><span>
My Profile
</a>
<a
class=
""
href=
"
{{ url('profile') }}
"
><i
data-feather=
"user"
></i><span>
My Profile
</a>
</div>
<div
class=
"dropdown-item"
>
<a
href=
"{{ route('logout') }}"
onclick=
"event.preventDefault();document.getElementById('logout-form').submit();"
><i
data-feather=
"log-out"
></i>
Logout
</a>
...
...
@@ -150,7 +151,7 @@
feather
.
replace
();
</script>
<script
src=
"{{ url('theme/plugins/sweetalert2/dist/sweetalert2.all.min.js') }}"
></script>
@include('sweet::alert')
{{--
<script
src=
"{{ url('theme/plugins/sweetalerts/promise-polyfill.js') }}"
></script>
...
...
resources/views/layouts/menuadmin.blade.php
View file @
f675d949
...
...
@@ -6,7 +6,7 @@
</a>
<ul
class=
"collapse submenu list-unstyled"
id=
"tables"
data-parent=
"#topAccordion"
>
<li>
<a
href=
"{{ route('adminusers.index') }}"
>
User
</a>
<a
href=
"{{ route('admin
.
users.index') }}"
>
User
</a>
</li>
<li
class=
"sub-sub-submenu-list"
>
<a
href=
"#datatable"
data-toggle=
"collapse"
aria-expanded=
"false"
class=
"dropdown-toggle"
>
Bidang Penelitian
<i
data-feather=
"chevron-right"
>
</i></a>
...
...
@@ -20,6 +20,17 @@
</ul>
</li>
<li
class=
"sub-sub-submenu-list"
>
<a
href=
"#datatable"
data-toggle=
"collapse"
aria-expanded=
"false"
class=
"dropdown-toggle"
>
Bidang Kepakaran
<i
data-feather=
"chevron-right"
>
</i></a>
<ul
class=
"collapse list-unstyled sub-submenu"
id=
"datatable"
data-parent=
"#datatable"
>
<li>
<a
href=
"{{ url('admin/kategorikepakaran') }}"
>
Kategori
</a>
</li>
<li>
<a
href=
"{{ url('admin/bidangkepakaran') }}"
>
Bidang Kepakaran
</a>
</li>
</ul>
</li>
<li
class=
"sub-sub-submenu-list"
>
<a
href=
"#datatable"
data-toggle=
"collapse"
aria-expanded=
"false"
class=
"dropdown-toggle"
>
Tujuan Sosial Ekonomi
<i
data-feather=
"chevron-right"
>
</i>
</a>
<ul
class=
"collapse list-unstyled sub-submenu"
id=
"datatable"
data-parent=
"#datatable"
>
<li>
...
...
resources/views/profile/show.blade.php
View file @
f675d949
<x-app-layout>
<x-slot
name=
"header"
>
<h2
class=
"font-semibold text-xl text-gray-800 leading-tight"
>
{{ __('Profile') }}
</h2>
</x-slot>
<div>
<div
class=
"max-w-7xl mx-auto py-10 sm:px-6 lg:px-8"
>
@if (Laravel\Fortify\Features::canUpdateProfileInformation())
@livewire('profile.update-profile-information-form')
<x-jet-section-border
/>
@endif
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
<div
class=
"mt-10 sm:mt-0"
>
@livewire('profile.update-password-form')
</div>
@
extends
(
'layouts.master'
)
<x-jet-section-border
/>
@endif
@
section
(
'title'
)
User
Profil
@
endsection
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
<div
class=
"mt-10 sm:mt-0"
>
@livewire('profile.two-factor-authentication-form')
</div>
@
section
(
'header'
)
<
div
class
="
page
-
title
">
<h3>User Profil</h3>
</div>
@endsection
<x-jet-section-border
/>
@endif
@section('contents')
@php
$menu
= 'dashboard';
@endphp
<div class="
row
layout
-
top
-
spacing
">
<div class="
col
-
xl
-
4
col
-
lg
-
6
col
-
md
-
5
col
-
sm
-
12
layout
-
top
-
spacing
">
<div class="
user
-
profile
layout
-
spacing
">
<div class="
widget
-
content
widget
-
content
-
area
">
<div class="
d
-
flex
justify
-
content
-
between
">
<h3 class="">Info</h3>
<a href="" class="
mt
-
2
edit
-
profile
"> <svg xmlns="
http
://
www
.
w3
.
org
/
2000
/
svg
" width="
24
" height="
24
" viewBox="
0
0
24
24
" fill="
none
" stroke="
currentColor
" stroke-width="
2
" stroke-linecap="
round
" stroke-linejoin="
round
" class="
feather
feather
-
edit
-
3
"><path d="
M12
20
h9
"></path><path d="
M16
.
5
3.5
a2
.
121
2.121
0
0
1
3
3
L7
19
l
-
4
1
1
-
4
L16
.
5
3.5
z
"></path></svg></a>
</div>
<div class="
text
-
center
user
-
info
">
<img src="
assets
/
img
/
90
x90
.
jpg
" alt="
avatar
">
<p class="">{{ Auth::user()->name }}</p>
</div>
<div class="
user
-
info
-
list
">
<div
class=
"mt-10 sm:mt-0"
>
@livewire('profile.logout-other-browser-sessions-form')
<div class="">
<ul class="
contacts
-
block
list
-
unstyled
">
<li class="
contacts
-
block__item
">
<i data-feather="
coffee
"></i> Web Developer
</li>
<li class="
contacts
-
block__item
">
<i data-feather="
calendar
"></i> Jan 20, 1989
</li>
<li class="
contacts
-
block__item
">
<i data-feather="
map
-
pin
"></i> New York, USA
</li>
<li class="
contacts
-
block__item
">
<a href="
mailto
:
'{{ Auth::user()->email }}'
"> <i data-feather="
mail
"></i> {{ Auth::user()->email }}</a>
</li>
<li class="
contacts
-
block__item
">
<i data-feather="
phone
"></i> +1 (530) 555-12121
</li>
</ul>
</div>
</div>
</div>
</div>
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
<x-jet-section-border
/>
</div>
<div
class=
"mt-10 sm:mt-0"
>
@livewire('profile.delete-user-form')
<div class="
col
-
xl
-
8
col
-
lg
-
6
col
-
md
-
7
col
-
sm
-
12
layout
-
top
-
spacing
">
<div class="
skills
layout
-
spacing
">
<div class="
widget
-
content
widget
-
content
-
area
">
<h3 class="">Skills</h3>
<div class="
progress
br
-
30
">
<div class="
progress
-
bar
bg
-
primary
" role="
progressbar
" style="
width
:
25
%
" aria-valuenow="
25
" aria-valuemin="
0
" aria-valuemax="
100
"><div class="
progress
-
title
"><span>PHP</span> <span>25%</span> </div></div>
</div>
@endif
<div class="
progress
br
-
30
">
<div class="
progress
-
bar
bg
-
primary
" role="
progressbar
" style="
width
:
50
%
" aria-valuenow="
25
" aria-valuemin="
0
" aria-valuemax="
100
"><div class="
progress
-
title
"><span>Wordpress</span> <span>50%</span> </div></div>
</div>
<div class="
progress
br
-
30
">
<div class="
progress
-
bar
bg
-
primary
" role="
progressbar
" style="
width
:
70
%
" aria-valuenow="
25
" aria-valuemin="
0
" aria-valuemax="
100
"><div class="
progress
-
title
"><span>Javascript</span> <span>70%</span> </div></div>
</div>
<div class="
progress
br
-
30
">
<div class="
progress
-
bar
bg
-
primary
" role="
progressbar
" style="
width
:
60
%
" aria-valuenow="
25
" aria-valuemin="
0
" aria-valuemax="
100
"><div class="
progress
-
title
"><span>jQuery</span> <span>60%</span> </div></div>
</div>
</div>
</div>
</div>
</x-app-layout>
</div>
@endsection
@section('js')
<script src="
{{
url
(
'theme/plugins/highlight/highlight.pack.js'
)
}}
"></script>
<script src="
{{
url
(
'theme/assets/js/scrollspyNav.js'
)
}}
"></script>
@endsection
routes/web.php
View file @
f675d949
...
...
@@ -16,6 +16,7 @@ use App\Http\Controllers\User\UnitBisnisController;
use
App\Http\Controllers\Admin\BidangPenelitianController
as
AdminBidangPenelitianController
;
use
App\Http\Controllers\Admin\TujuanSosialController
as
AdminTujuanSosialController
;
use
App\Http\Controllers\Admin\BidangKepakaranController
as
AdminBidangKepakaranController
;
use
App\Http\Controllers\Admin\UserController
;
use
Illuminate\Support\Facades\Route
;
...
...
@@ -51,6 +52,15 @@ Route::group(['middleware' => ['auth:sanctum', 'verified']], function () {
Route
::
resource
(
'/tujuansosial'
,
AdminTujuanSosialController
::
class
);
Route
::
get
(
'/tujuankategori'
,
[
AdminTujuanSosialController
::
class
,
'tujuankategori'
])
->
name
(
'tujuankategori'
);
Route
::
get
(
'/tujuankategoriedit/{id}'
,
[
AdminTujuanSosialController
::
class
,
'kategoriedit'
])
->
name
(
'tujuankategori.edit'
);
Route
::
post
(
'/tujuankategori-simpan'
,
[
AdminTujuanSosialController
::
class
,
'kategoristore'
])
->
name
(
'tujuankategori.simpan'
);
Route
::
resource
(
'/bidangkepakaran'
,
AdminBidangKepakaranController
::
class
);
Route
::
get
(
'/kepakarankategori'
,
[
AdminBidangKepakaranController
::
class
,
'kepakarankategori'
])
->
name
(
'kepakarankategori'
);
Route
::
get
(
'/kepakarankategoriedit/{id}'
,
[
AdminBidangKepakaranController
::
class
,
'kategoriedit'
])
->
name
(
'kepakarankategori.edit'
);
Route
::
post
(
'/kepakarankategori-simpan'
,
[
AdminBidangKepakaranController
::
class
,
'kategoristore'
])
->
name
(
'kepakarankategori.simpan'
);
Route
::
get
(
'/tujuankategori'
,
[
AdminTujuanSosialController
::
class
,
'tujuankategori'
])
->
name
(
'tujuankategori'
);
Route
::
resource
(
'/users'
,
UserController
::
class
);
Route
::
post
(
'/user/remove-role'
,
[
UserController
::
class
,
'removeRole'
])
->
name
(
'remove-role'
);
Route
::
post
(
'/user/add-role'
,
[
UserController
::
class
,
'addRole'
])
->
name
(
'add-role'
);
...
...
@@ -58,6 +68,8 @@ Route::group(['middleware' => ['auth:sanctum', 'verified']], function () {
Route
::
group
([
'middleware'
=>
[
'role:admin|user'
]],
function
()
{
Route
::
get
(
'/profile'
,
function
()
{
return
view
(
'profile.show'
);
})
->
name
(
'profile'
);
Route
::
get
(
'/get-biodata'
,
[
GetDataController
::
class
,
'getBiodata'
])
->
name
(
'get-biodata'
);
// Route::get('/get-row-anggota', [PenelitianSumberDanaController::class, 'getRowAnggota'])->name('get-row-anggota');
Route
::
get
(
'/get-children'
,
[
GetDataController
::
class
,
'getChildren'
])
->
name
(
'get-children'
);
...
...
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