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
3f554084
Commit
3f554084
authored
Apr 19, 2021
by
Muhammad Iskandar Java
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://git.unesa.ac.id/farendi/simlitabmas
into master
parents
179c2f19
a6f9c06f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
37 additions
and
23 deletions
+37
-23
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/menu.blade.php
+1
-1
No files found.
app/Http/Controllers/User/PenelitiAsingController.php
View file @
3f554084
...
...
@@ -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 @
3f554084
...
...
@@ -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 @
3f554084
...
...
@@ -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 @
3f554084
<?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/menu.blade.php
View file @
3f554084
...
...
@@ -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