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
b4c21f42
Commit
b4c21f42
authored
Apr 19, 2021
by
Farendi Giotivano R.P
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Master Layout
parent
99ab1d8b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
38 additions
and
24 deletions
+38
-24
app/Http/Controllers/User/PenelitiAsingController.php
+1
-0
database/migrations/2014_10_12_000000_create_users_table.php
+2
-1
database/migrations/2021_04_14_044505_create_sessions_table.php
+1
-1
database/migrations/2021_04_14_053321_create_permission_tables.php
+32
-20
resources/views/layouts/master.blade.php
+1
-1
resources/views/layouts/menu.blade.php
+1
-1
No files found.
app/Http/Controllers/User/PenelitiAsingController.php
View file @
b4c21f42
...
...
@@ -15,6 +15,7 @@ class PenelitiAsingController extends Controller
public
function
index
()
{
//
return
view
(
'user.penelitiasing.index'
);
}
/**
...
...
database/migrations/2014_10_12_000000_create_users_table.php
View file @
b4c21f42
...
...
@@ -14,7 +14,8 @@ class CreateUsersTable extends Migration
public
function
up
()
{
Schema
::
create
(
'users'
,
function
(
Blueprint
$table
)
{
$table
->
id
();
//$table->id();
$table
->
uuid
(
'id'
);
$table
->
string
(
'name'
);
$table
->
string
(
'email'
)
->
unique
();
$table
->
timestamp
(
'email_verified_at'
)
->
nullable
();
...
...
database/migrations/2021_04_14_044505_create_sessions_table.php
View file @
b4c21f42
...
...
@@ -15,7 +15,7 @@ class CreateSessionsTable extends Migration
{
Schema
::
create
(
'sessions'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
)
->
primary
();
$table
->
foreign
I
d
(
'user_id'
)
->
nullable
()
->
index
();
$table
->
foreign
Uui
d
(
'user_id'
)
->
nullable
()
->
index
();
$table
->
string
(
'ip_address'
,
45
)
->
nullable
();
$table
->
text
(
'user_agent'
)
->
nullable
();
$table
->
text
(
'payload'
);
...
...
database/migrations/2021_04_14_053321_create_permission_tables.php
View file @
b4c21f42
<?php
use
Illuminate\Support\Facades\Schema
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
CreatePermissionTables
extends
Migration
{
...
...
@@ -21,28 +21,32 @@ class CreatePermissionTables extends Migration
}
Schema
::
create
(
$tableNames
[
'permissions'
],
function
(
Blueprint
$table
)
{
$table
->
bigIncrements
(
'id'
);
$table
->
string
(
'name'
);
// For MySQL 8.0 use string('name', 125);
$table
->
string
(
'guard_name'
);
// For MySQL 8.0 use string('guard_name', 125);
// $table->bigIncrements('id');
$table
->
uuid
(
'id'
);
$table
->
string
(
'name'
);
$table
->
string
(
'guard_name'
);
$table
->
timestamps
();
$table
->
unique
([
'name'
,
'guard_name'
]
);
$table
->
primary
(
'id'
);
});
Schema
::
create
(
$tableNames
[
'roles'
],
function
(
Blueprint
$table
)
{
$table
->
bigIncrements
(
'id'
);
$table
->
string
(
'name'
);
// For MySQL 8.0 use string('name', 125);
$table
->
string
(
'guard_name'
);
// For MySQL 8.0 use string('guard_name', 125);
// $table->bigIncrements('id');
$table
->
uuid
(
'id'
);
$table
->
string
(
'name'
);
$table
->
string
(
'guard_name'
);
$table
->
timestamps
();
$table
->
unique
([
'name'
,
'guard_name'
]
);
$table
->
primary
(
'id'
);
});
Schema
::
create
(
$tableNames
[
'model_has_permissions'
],
function
(
Blueprint
$table
)
use
(
$tableNames
,
$columnNames
)
{
$table
->
unsignedBigInteger
(
'permission_id'
);
// $table->unsignedBigInteger('permission_id');
$table
->
uuid
(
'permission_id'
);
$table
->
string
(
'model_type'
);
$table
->
unsignedBigInteger
(
$columnNames
[
'model_morph_key'
]);
// $table->unsignedBigInteger($columnNames['model_morph_key']);
$table
->
uuid
(
$columnNames
[
'model_morph_key'
]);
$table
->
index
([
$columnNames
[
'model_morph_key'
],
'model_type'
],
'model_has_permissions_model_id_model_type_index'
);
$table
->
foreign
(
'permission_id'
)
...
...
@@ -50,15 +54,19 @@ class CreatePermissionTables extends Migration
->
on
(
$tableNames
[
'permissions'
])
->
onDelete
(
'cascade'
);
$table
->
primary
([
'permission_id'
,
$columnNames
[
'model_morph_key'
],
'model_type'
],
'model_has_permissions_permission_model_type_primary'
);
$table
->
primary
(
[
'permission_id'
,
$columnNames
[
'model_morph_key'
],
'model_type'
],
'model_has_permissions_permission_model_type_primary'
);
});
Schema
::
create
(
$tableNames
[
'model_has_roles'
],
function
(
Blueprint
$table
)
use
(
$tableNames
,
$columnNames
)
{
$table
->
unsignedBigInteger
(
'role_id'
);
// $table->unsignedBigInteger('role_id');
$table
->
uuid
(
'role_id'
);
$table
->
string
(
'model_type'
);
$table
->
unsignedBigInteger
(
$columnNames
[
'model_morph_key'
]);
$table
->
uuid
(
$columnNames
[
'model_morph_key'
]);
// $table->unsignedBigInteger($columnNames['model_morph_key']);
$table
->
index
([
$columnNames
[
'model_morph_key'
],
'model_type'
],
'model_has_roles_model_id_model_type_index'
);
$table
->
foreign
(
'role_id'
)
...
...
@@ -66,13 +74,17 @@ class CreatePermissionTables extends Migration
->
on
(
$tableNames
[
'roles'
])
->
onDelete
(
'cascade'
);
$table
->
primary
([
'role_id'
,
$columnNames
[
'model_morph_key'
],
'model_type'
],
'model_has_roles_role_model_type_primary'
);
$table
->
primary
(
[
'role_id'
,
$columnNames
[
'model_morph_key'
],
'model_type'
],
'model_has_roles_role_model_type_primary'
);
});
Schema
::
create
(
$tableNames
[
'role_has_permissions'
],
function
(
Blueprint
$table
)
use
(
$tableNames
)
{
$table
->
unsignedBigInteger
(
'permission_id'
);
$table
->
unsignedBigInteger
(
'role_id'
);
// $table->unsignedBigInteger('permission_id');
// $table->unsignedBigInteger('role_id');
$table
->
uuid
(
'permission_id'
);
$table
->
uuid
(
'role_id'
);
$table
->
foreign
(
'permission_id'
)
->
references
(
'id'
)
...
...
resources/views/layouts/master.blade.php
View file @
b4c21f42
...
...
@@ -39,7 +39,7 @@
<div
class=
"media"
>
<img
src=
"{{ url('theme/assets/img/90x90.jpg') }}"
class=
"img-fluid"
alt=
"admin-profile"
>
<div
class=
"media-body align-self-center"
>
<h6><span>
Hi,
</span>
Alan
</h6>
{{--
<h6><span>
Hi,
</span>
{{ auth()->user()->name }}
</h6>
--}}
</div>
</div>
<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-chevron-down"
><polyline
points=
"6 9 12 15 18 9"
></polyline></svg>
...
...
resources/views/layouts/menu.blade.php
View file @
b4c21f42
...
...
@@ -32,7 +32,7 @@
<a
href=
"{{ url('dosen') }}"
>
Dosen Perguruan Tinggi
</a>
</li>
<li>
<a
href=
"{{ url('penlitiasing') }}"
>
Peneliti Asing
</a>
<a
href=
"{{ url('pen
e
litiasing') }}"
>
Peneliti Asing
</a>
</li>
<li>
<a
href=
"{{ url('stafpendukung') }}"
>
Sumber Daya Staf Pendukung
</a>
...
...
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