Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
webprofile-jwg2024
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
webprofile-jwg2024
Commits
4448a33f
Commit
4448a33f
authored
Jun 16, 2021
by
Bagus Pambudi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
3 bahasa tidak wajib diisi
parent
aa4e3b80
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
27 additions
and
27 deletions
+27
-27
database/migrations/2020_12_19_143802_create_de_table.php
+5
-5
database/migrations/2020_12_20_080910_create_sa_table.php
+5
-5
database/migrations/2020_12_20_111102_create_zh_table.php
+5
-5
resources/views/webprofile/backend/design/edit.blade.php
+3
-3
resources/views/webprofile/backend/informations/edit.blade.php
+3
-3
resources/views/webprofile/backend/pages/edit.blade.php
+3
-3
resources/views/webprofile/backend/posts/edit.blade.php
+3
-3
No files found.
database/migrations/2020_12_19_143802_create_de_table.php
View file @
4448a33f
...
...
@@ -16,7 +16,7 @@ class CreateDeTable extends Migration
Schema
::
create
(
'swp_categories_de'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'category_id'
,
36
);
$table
->
string
(
'name'
);
$table
->
string
(
'name'
)
->
nullable
()
;
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
$table
->
timestamps
();
...
...
@@ -25,7 +25,7 @@ class CreateDeTable extends Migration
Schema
::
create
(
'swp_posts_de'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'post_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
@@ -35,7 +35,7 @@ class CreateDeTable extends Migration
Schema
::
create
(
'swp_informations_de'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'information_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
@@ -45,7 +45,7 @@ class CreateDeTable extends Migration
Schema
::
create
(
'swp_menus_de'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'menu_id'
,
36
);
$table
->
string
(
'name'
);
$table
->
string
(
'name'
)
->
nullable
()
;
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
$table
->
timestamps
();
...
...
@@ -54,7 +54,7 @@ class CreateDeTable extends Migration
Schema
::
create
(
'swp_pages_de'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'page_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
database/migrations/2020_12_20_080910_create_sa_table.php
View file @
4448a33f
...
...
@@ -16,7 +16,7 @@ class CreateSaTable extends Migration
Schema
::
create
(
'swp_categories_sa'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'category_id'
,
36
);
$table
->
string
(
'name'
);
$table
->
string
(
'name'
)
->
nullable
()
;
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
$table
->
timestamps
();
...
...
@@ -25,7 +25,7 @@ class CreateSaTable extends Migration
Schema
::
create
(
'swp_posts_sa'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'post_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
@@ -35,7 +35,7 @@ class CreateSaTable extends Migration
Schema
::
create
(
'swp_informations_sa'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'information_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
@@ -45,7 +45,7 @@ class CreateSaTable extends Migration
Schema
::
create
(
'swp_menus_sa'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'menu_id'
,
36
);
$table
->
string
(
'name'
);
$table
->
string
(
'name'
)
->
nullable
()
;
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
$table
->
timestamps
();
...
...
@@ -54,7 +54,7 @@ class CreateSaTable extends Migration
Schema
::
create
(
'swp_pages_sa'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'page_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
database/migrations/2020_12_20_111102_create_zh_table.php
View file @
4448a33f
...
...
@@ -16,7 +16,7 @@ class CreateZhTable extends Migration
Schema
::
create
(
'swp_categories_zh'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'category_id'
,
36
);
$table
->
string
(
'name'
);
$table
->
string
(
'name'
)
->
nullable
()
;
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
$table
->
timestamps
();
...
...
@@ -25,7 +25,7 @@ class CreateZhTable extends Migration
Schema
::
create
(
'swp_posts_zh'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'post_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
@@ -35,7 +35,7 @@ class CreateZhTable extends Migration
Schema
::
create
(
'swp_informations_zh'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'information_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
@@ -45,7 +45,7 @@ class CreateZhTable extends Migration
Schema
::
create
(
'swp_menus_zh'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'menu_id'
,
36
);
$table
->
string
(
'name'
);
$table
->
string
(
'name'
)
->
nullable
()
;
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
$table
->
timestamps
();
...
...
@@ -54,7 +54,7 @@ class CreateZhTable extends Migration
Schema
::
create
(
'swp_pages_zh'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'id'
,
36
)
->
primary
();
$table
->
string
(
'page_id'
,
36
);
$table
->
string
(
'title'
);
$table
->
string
(
'title'
)
->
nullable
()
;
$table
->
text
(
'content'
)
->
nullable
();
$table
->
string
(
'userid_created'
,
36
)
->
nullable
();
$table
->
string
(
'userid_updated'
,
36
)
->
nullable
();
...
...
resources/views/webprofile/backend/design/edit.blade.php
View file @
4448a33f
...
...
@@ -91,7 +91,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title_design'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_design_de',
$data->rDe
?
$data->rDe
->title_design : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_design_de',
$data->rDe
?
$data->rDe
->title_design : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title_design'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title_design')}
}
</label>
@endif
...
...
@@ -111,7 +111,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title_design'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_design_sa',
$data->rSa
?
$data->rSa
->title_design : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_design_sa',
$data->rSa
?
$data->rSa
->title_design : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title_design'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title_design')}
}
</label>
@endif
...
...
@@ -131,7 +131,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title_design'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_design_zh',
$data->rZh
?
$data->rZh
->title_design : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_design_zh',
$data->rZh
?
$data->rZh
->title_design : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title_design'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title_design')}
}
</label>
@endif
...
...
resources/views/webprofile/backend/informations/edit.blade.php
View file @
4448a33f
...
...
@@ -84,7 +84,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_de',
$data->rDe
?
$data->rDe
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_de',
$data->rDe
?
$data->rDe
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
@@ -104,7 +104,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_sa',
$data->rSa
?
$data->rSa
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_sa',
$data->rSa
?
$data->rSa
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
@@ -124,7 +124,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_zh',
$data->rZh
?
$data->rZh
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_zh',
$data->rZh
?
$data->rZh
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
resources/views/webprofile/backend/pages/edit.blade.php
View file @
4448a33f
...
...
@@ -84,7 +84,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_de',
$data->rDe
?
$data->rDe
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_de',
$data->rDe
?
$data->rDe
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
@@ -104,7 +104,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_sa',
$data->rSa
?
$data->rSa
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_sa',
$data->rSa
?
$data->rSa
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
@@ -124,7 +124,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_zh',
$data->rZh
?
$data->rZh
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_zh',
$data->rZh
?
$data->rZh
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
resources/views/webprofile/backend/posts/edit.blade.php
View file @
4448a33f
...
...
@@ -94,7 +94,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_de',
$data->rDe
?
$data->rDe
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_de',
$data->rDe
?
$data->rDe
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
@@ -114,7 +114,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_sa',
$data->rSa
?
$data->rSa
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_sa',
$data->rSa
?
$data->rSa
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
@@ -134,7 +134,7 @@
<div class="
col
-
md
-
12
">
<div class="
form
-
group
@
if
(
$errors
->
has
(
'title'
))
has
-
error
@
endif
">
<div class="
col
-
md
-
12
">
{{ Form::text('title_zh',
$data->rZh
?
$data->rZh
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;'
, 'required'
)) }}
{{ Form::text('title_zh',
$data->rZh
?
$data->rZh
->title : null, array('class' => 'form-control', 'placeholder'=>app('translator')->getFromJson('label.title'), 'style'=>'font-size: 14pt;')) }}
@if (
$errors->has
('title'))
<label id="
login
-
error
" class="
error
" for="
login
">
{
{$errors->first('title')}
}
</label>
@endif
...
...
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