Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pa2d4ti06
Project
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Juliper
pa2d4ti06
Commits
1fdf0c33
Commit
1fdf0c33
authored
May 17, 2017
by
Palti Sinaga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
view
parent
ec43af1a
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
527 additions
and
67 deletions
+527
-67
AddBookManual.blade.php
...ews/vendor/adminlte/layouts/owner/AddBookManual.blade.php
+33
-46
ListPengajuanFasilitas.blade.php
...r/adminlte/layouts/owner/ListPengajuanFasilitas.blade.php
+1
-4
home.blade.php
resources/views/vendor/adminlte/layouts/owner/home.blade.php
+491
-10
listRoom.blade.php
...es/views/vendor/adminlte/layouts/owner/listRoom.blade.php
+0
-1
mainheader.blade.php
...ews/vendor/adminlte/layouts/partials/mainheader.blade.php
+1
-4
sidebar.blade.php
.../views/vendor/adminlte/layouts/partials/sidebar.blade.php
+1
-1
web.php
routes/web.php
+0
-1
No files found.
resources/views/vendor/adminlte/layouts/owner/AddBookManual.blade.php
View file @
1fdf0c33
@
extends
(
'adminlte::layouts.app'
)
@
extends
(
'adminlte::layouts.app'
)
@
section
(
'htmlheader_title'
)
@
section
(
'htmlheader_title'
)
{{
trans
(
'adminlte_lang::message.home'
)
}}
{{
trans
(
'adminlte_lang::message.home'
)
}}
@
endsection
@
endsection
@
section
(
'main-content'
)
@
section
(
'main-content'
)
<
div
class
="
container
-
fluid
spark
-
screen
">
<
div
class
="
box
box
-
primary
">
<div class="
row
">
<div class="
box
-
header
with
-
border
">
<div class="
col
-
md
-
10
col
-
md
-
offset
-
1
">
<h3 class="
box
-
title
"> TAMBAH PEMESANAN </h3>
<div class="
panel
panel
-
default
">
@if (count(
$errors
) > 0)
<div class="
panel
-
body
">
<div class="
alert
alert
-
danger
">
@if(Session::has('alert-success'))
<strong>Whoops!</strong> {{ trans('adminlte_lang::message.someproblems') }}<br><br>
<div class="
alert
alert
-
success
">
<ul>
{{ Session::get('alert-success') }}
@foreach (
$errors->all
() as
$error
)
</div>
<li>{{
$error
}}</li>
@endif
@endforeach
</ul>
@if (count(
$errors
) > 0)
<div class="
alert
alert
-
danger
">
<ul>
@foreach (
$errors->all
() as
$error
)
<li>{{
$error
}}</li>
@endforeach
</ul>
</div>
@endif
<form action="" method="
post
" enctype="
multipart
/
form
-
data
">
<input type="
hidden
" name="
_method
" value="
PUT
">
<!--
{
{csrf_field()}
}
-->
<label>Nama Pemesan</label>
<input type="
text
" name="
nama
" value="" id="
nama
" class="
form
-
control
">
<label> Jumlah Penginap </label>
<input type="
text
" name="
nama
" value="" id="
nama
" class="
form
-
control
">
<label>Tanggal Check in</label>
<input type="
Date
" name="
checkin
" value="" id="
checkin
" class="
form
-
control
">
<label>Tanggal Check out</label>
<input type="
Date
" name="
checkout
" value="" id="
checkout
" class="
form
-
control
">
<label>Total Pembayaran</label>
<input type="
text
" name="
TtlPembayaran
" value="" id="
nama
" class="
form
-
control
">
<label>Tanggal Pembayaran</label>
<input type="
Date
" name="
Tglbayar
" value="" id="
Tglbayar
" class="
form
-
control
">
<br>
<div class="
form
-
group
" align="
right
">
<input type="
submit
" class="
btn
btn
-
primary
" value="
simpan
">
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
@endif
</div>
<div class="
box
-
body
">
<form action="" method="
post
" enctype="
multipart
/
form
-
data
">
<input type="
hidden
" name="
_method
" value="
PUT
">
<!--
{
{csrf_field()}
}
-->
<label>Nama Pemesan</label>
<input type="
text
" name="
nama
" value="" id="
nama
" class="
form
-
control
">
<label> Jumlah KAMAR </label>
<input type="
text
" name="
nama
" value="" id="
nama
" class="
form
-
control
">
<label>Tanggal Check in</label>
<input type="
Date
" name="
checkin
" value="" id="
checkin
" class="
form
-
control
">
<label>Lama Menginap</label>
<input type="
text
" name="
TtlPembayaran
" value="" id="
nama
" class="
form
-
control
">
<br>
<div class="
form
-
group
" align="
right
">
<input type="
submit
" class="
btn
btn
-
primary
" value="
simpan
">
</div>
</form>
</div>
</div>
@endsection
@endsection
resources/views/vendor/adminlte/layouts/owner/ListPengajuanFasilitas.blade.php
View file @
1fdf0c33
...
@@ -68,9 +68,6 @@
...
@@ -68,9 +68,6 @@
</table>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@endsection
resources/views/vendor/adminlte/layouts/owner/home.blade.php
View file @
1fdf0c33
...
@@ -5,17 +5,498 @@
...
@@ -5,17 +5,498 @@
@
endsection
@
endsection
@
section
(
'main-content'
)
@
section
(
'main-content'
)
<
div
class
="
container
-
fluid
spark
-
screen
">
<
section
class
="
content
">
<div class="
row
">
<!-- Small boxes (Stat box) -->
<div class="
col
-
md
-
8
col
-
md
-
offset
-
2
">
<div class="
row
">
<div class="
panel
panel
-
default
">
<div class="
col
-
lg
-
3
col
-
xs
-
6
">
<div class="
panel
-
heading
">Home</div>
<!-- small box -->
<div class="
small
-
box
bg
-
aqua
">
<div class="
inner
">
<h3>150</h3>
<div class="
panel
-
body
">
<p>Pemesanan</p>
{{ trans('adminlte_lang::message.logged') }}
</div>
</div>
<div class="
icon
">
</div>
<i class="
ion
ion
-
bag
"></i>
</div>
</div>
<a href="
#" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
</
div
>
</
div
>
<!--
./
col
-->
<
div
class
="
col
-
lg
-
3
col
-
xs
-
6
">
<!-- small box -->
<div class="
small
-
box
bg
-
green
">
<div class="
inner
">
<h3>53<sup style="
font
-
size
:
20
px
">%</sup></h3>
<p>Bounce Rate</p>
</div>
<div class="
icon
">
<i class="
ion
ion
-
stats
-
bars
"></i>
</div>
<a href="
#" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
</
div
>
</
div
>
<!--
./
col
-->
<
div
class
="
col
-
lg
-
3
col
-
xs
-
6
">
<!-- small box -->
<div class="
small
-
box
bg
-
yellow
">
<div class="
inner
">
<h3>44</h3>
<p>User Registrations</p>
</div>
<div class="
icon
">
<i class="
ion
ion
-
person
-
add
"></i>
</div>
</div>
<a href="
#" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
</
div
>
</
div
>
</
div
>
<!--
./
col
-->
<
div
class
="
col
-
lg
-
3
col
-
xs
-
6
">
<!-- small box -->
<div class="
small
-
box
bg
-
red
">
<div class="
inner
">
<h3>65</h3>
<p>Unique Visitors</p>
</div>
<div class="
icon
">
<i class="
ion
ion
-
pie
-
graph
"></i>
</div>
<a href="
#" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
</
div
>
</
div
>
<!--
./
col
-->
</
div
>
<!--
/.
row
-->
<!--
Main
row
-->
<
div
class
="
row
">
<!-- Left col -->
<section class="
col
-
lg
-
7
connectedSortable
">
<!-- Custom tabs (Charts with tabs)-->
<div class="
nav
-
tabs
-
custom
">
<!-- Tabs within a box -->
<ul class="
nav
nav
-
tabs
pull
-
right
">
<li class="
active
"><a href="
#revenue-chart" data-toggle="tab">Area</a></li>
<
li
><
a
href
=
"#sales-chart"
data
-
toggle
=
"tab"
>
Donut
</
a
></
li
>
<
li
class
="
pull
-
left
header
"><i class="
fa
fa
-
inbox
"></i> Sales</li>
</ul>
<div class="
tab
-
content
no
-
padding
">
<!-- Morris chart - Sales -->
<div class="
chart
tab
-
pane
active
" id="
revenue
-
chart
" style="
position
:
relative
;
height
:
300
px
;
"></div>
<div class="
chart
tab
-
pane
" id="
sales
-
chart
" style="
position
:
relative
;
height
:
300
px
;
"></div>
</div>
</div>
<!-- /.nav-tabs-custom -->
<!-- Chat box -->
<div class="
box
box
-
success
">
<div class="
box
-
header
">
<i class="
fa
fa
-
comments
-
o
"></i>
<h3 class="
box
-
title
">Chat</h3>
<div class="
box
-
tools
pull
-
right
" data-toggle="
tooltip
" title="
Status
">
<div class="
btn
-
group
" data-toggle="
btn
-
toggle
">
<button type="
button
" class="
btn
btn
-
default
btn
-
sm
active
"><i class="
fa
fa
-
square
text
-
green
"></i>
</button>
<button type="
button
" class="
btn
btn
-
default
btn
-
sm
"><i class="
fa
fa
-
square
text
-
red
"></i></button>
</div>
</div>
</div>
<div class="
box
-
body
chat
" id="
chat
-
box
">
<!-- chat item -->
<div class="
item
">
<img src="
dist
/
img
/
user4
-
128
x128
.
jpg
" alt="
user
image
" class="
online
">
<p class="
message
">
<a href="
#" class="name">
<
small
class
="
text
-
muted
pull
-
right
"><i class="
fa
fa
-
clock
-
o
"></i> 2:15</small>
Mike Doe
</a>
I would like to meet you to discuss the latest news about
the arrival of the new theme. They say it is going to be one the
best themes on the market
</p>
<div class="
attachment
">
<h4>Attachments:</h4>
<p class="
filename
">
Theme-thumbnail-image.jpg
</p>
<div class="
pull
-
right
">
<button type="
button
" class="
btn
btn
-
primary
btn
-
sm
btn
-
flat
">Open</button>
</div>
</div>
<!-- /.attachment -->
</div>
<!-- /.item -->
<!-- chat item -->
<div class="
item
">
<img src="
dist
/
img
/
user3
-
128
x128
.
jpg
" alt="
user
image
" class="
offline
">
<p class="
message
">
<a href="
#" class="name">
<
small
class
="
text
-
muted
pull
-
right
"><i class="
fa
fa
-
clock
-
o
"></i> 5:15</small>
Alexander Pierce
</a>
I would like to meet you to discuss the latest news about
the arrival of the new theme. They say it is going to be one the
best themes on the market
</p>
</div>
<!-- /.item -->
<!-- chat item -->
<div class="
item
">
<img src="
dist
/
img
/
user2
-
160
x160
.
jpg
" alt="
user
image
" class="
offline
">
<p class="
message
">
<a href="
#" class="name">
<
small
class
="
text
-
muted
pull
-
right
"><i class="
fa
fa
-
clock
-
o
"></i> 5:30</small>
Susan Doe
</a>
I would like to meet you to discuss the latest news about
the arrival of the new theme. They say it is going to be one the
best themes on the market
</p>
</div>
<!-- /.item -->
</div>
<!-- /.chat -->
<div class="
box
-
footer
">
<div class="
input
-
group
">
<input class="
form
-
control
" placeholder="
Type
message
...
">
<div class="
input
-
group
-
btn
">
<button type="
button
" class="
btn
btn
-
success
"><i class="
fa
fa
-
plus
"></i></button>
</div>
</div>
</div>
</div>
<!-- /.box (chat box) -->
<!-- TO DO List -->
<div class="
box
box
-
primary
">
<div class="
box
-
header
">
<i class="
ion
ion
-
clipboard
"></i>
<h3 class="
box
-
title
">To Do List</h3>
<div class="
box
-
tools
pull
-
right
">
<ul class="
pagination
pagination
-
sm
inline
">
<li><a href="
#">«</a></li>
<
li
><
a
href
=
"#"
>
1
</
a
></
li
>
<
li
><
a
href
=
"#"
>
2
</
a
></
li
>
<
li
><
a
href
=
"#"
>
3
</
a
></
li
>
<
li
><
a
href
=
"#"
>&
raquo
;
</
a
></
li
>
</
ul
>
</
div
>
</
div
>
<!--
/.
box
-
header
-->
<
div
class
="
box
-
body
">
<ul class="
todo
-
list
">
<li>
<!-- drag handle -->
<span class="
handle
">
<i class="
fa
fa
-
ellipsis
-
v
"></i>
<i class="
fa
fa
-
ellipsis
-
v
"></i>
</span>
<!-- checkbox -->
<input type="
checkbox
" value="">
<!-- todo text -->
<span class="
text
">Design a nice theme</span>
<!-- Emphasis label -->
<small class="
label
label
-
danger
"><i class="
fa
fa
-
clock
-
o
"></i> 2 mins</small>
<!-- General tools such as edit or delete-->
<div class="
tools
">
<i class="
fa
fa
-
edit
"></i>
<i class="
fa
fa
-
trash
-
o
"></i>
</div>
</li>
<li>
<span class="
handle
">
<i class="
fa
fa
-
ellipsis
-
v
"></i>
<i class="
fa
fa
-
ellipsis
-
v
"></i>
</span>
<input type="
checkbox
" value="">
<span class="
text
">Make the theme responsive</span>
<small class="
label
label
-
info
"><i class="
fa
fa
-
clock
-
o
"></i> 4 hours</small>
<div class="
tools
">
<i class="
fa
fa
-
edit
"></i>
<i class="
fa
fa
-
trash
-
o
"></i>
</div>
</li>
<li>
<span class="
handle
">
<i class="
fa
fa
-
ellipsis
-
v
"></i>
<i class="
fa
fa
-
ellipsis
-
v
"></i>
</span>
<input type="
checkbox
" value="">
<span class="
text
">Let theme shine like a star</span>
<small class="
label
label
-
warning
"><i class="
fa
fa
-
clock
-
o
"></i> 1 day</small>
<div class="
tools
">
<i class="
fa
fa
-
edit
"></i>
<i class="
fa
fa
-
trash
-
o
"></i>
</div>
</li>
<li>
<span class="
handle
">
<i class="
fa
fa
-
ellipsis
-
v
"></i>
<i class="
fa
fa
-
ellipsis
-
v
"></i>
</span>
<input type="
checkbox
" value="">
<span class="
text
">Let theme shine like a star</span>
<small class="
label
label
-
success
"><i class="
fa
fa
-
clock
-
o
"></i> 3 days</small>
<div class="
tools
">
<i class="
fa
fa
-
edit
"></i>
<i class="
fa
fa
-
trash
-
o
"></i>
</div>
</li>
<li>
<span class="
handle
">
<i class="
fa
fa
-
ellipsis
-
v
"></i>
<i class="
fa
fa
-
ellipsis
-
v
"></i>
</span>
<input type="
checkbox
" value="">
<span class="
text
">Check your messages and notifications</span>
<small class="
label
label
-
primary
"><i class="
fa
fa
-
clock
-
o
"></i> 1 week</small>
<div class="
tools
">
<i class="
fa
fa
-
edit
"></i>
<i class="
fa
fa
-
trash
-
o
"></i>
</div>
</li>
<li>
<span class="
handle
">
<i class="
fa
fa
-
ellipsis
-
v
"></i>
<i class="
fa
fa
-
ellipsis
-
v
"></i>
</span>
<input type="
checkbox
" value="">
<span class="
text
">Let theme shine like a star</span>
<small class="
label
label
-
default
"><i class="
fa
fa
-
clock
-
o
"></i> 1 month</small>
<div class="
tools
">
<i class="
fa
fa
-
edit
"></i>
<i class="
fa
fa
-
trash
-
o
"></i>
</div>
</li>
</ul>
</div>
<!-- /.box-body -->
<div class="
box
-
footer
clearfix
no
-
border
">
<button type="
button
" class="
btn
btn
-
default
pull
-
right
"><i class="
fa
fa
-
plus
"></i> Add item</button>
</div>
</div>
<!-- /.box -->
<!-- quick email widget -->
<div class="
box
box
-
info
">
<div class="
box
-
header
">
<i class="
fa
fa
-
envelope
"></i>
<h3 class="
box
-
title
">Quick Email</h3>
<!-- tools box -->
<div class="
pull
-
right
box
-
tools
">
<button type="
button
" class="
btn
btn
-
info
btn
-
sm
" data-widget="
remove
" data-toggle="
tooltip
" title="
Remove
">
<i class="
fa
fa
-
times
"></i></button>
</div>
<!-- /. tools -->
</div>
<div class="
box
-
body
">
<form action="
#" method="post">
<
div
class
="
form
-
group
">
<input type="
email
" class="
form
-
control
" name="
emailto
" placeholder="
Email
to
:
">
</div>
<div class="
form
-
group
">
<input type="
text
" class="
form
-
control
" name="
subject
" placeholder="
Subject
">
</div>
<div>
<textarea class="
textarea
" placeholder="
Message
" style="
width
:
100
%
;
height
:
125
px
;
font
-
size
:
14
px
;
line
-
height
:
18
px
;
border
:
1
px
solid
#dddddd; padding: 10px;"></textarea>
</
div
>
</
form
>
</
div
>
<
div
class
="
box
-
footer
clearfix
">
<button type="
button
" class="
pull
-
right
btn
btn
-
default
" id="
sendEmail
">Send
<i class="
fa
fa
-
arrow
-
circle
-
right
"></i></button>
</div>
</div>
</section>
<!-- /.Left col -->
<!-- right col (We are only adding the ID to make the widgets sortable)-->
<section class="
col
-
lg
-
5
connectedSortable
">
<!-- Map box -->
<div class="
box
box
-
solid
bg
-
light
-
blue
-
gradient
">
<div class="
box
-
header
">
<!-- tools box -->
<div class="
pull
-
right
box
-
tools
">
<button type="
button
" class="
btn
btn
-
primary
btn
-
sm
daterange
pull
-
right
" data-toggle="
tooltip
" title="
Date
range
">
<i class="
fa
fa
-
calendar
"></i></button>
<button type="
button
" class="
btn
btn
-
primary
btn
-
sm
pull
-
right
" data-widget="
collapse
" data-toggle="
tooltip
" title="
Collapse
" style="
margin
-
right
:
5
px
;
">
<i class="
fa
fa
-
minus
"></i></button>
</div>
<!-- /. tools -->
<i class="
fa
fa
-
map
-
marker
"></i>
<h3 class="
box
-
title
">
Visitors
</h3>
</div>
<div class="
box
-
body
">
<div id="
world
-
map
" style="
height
:
250
px
;
width
:
100
%
;
"></div>
</div>
<!-- /.box-body-->
<div class="
box
-
footer
no
-
border
">
<div class="
row
">
<div class="
col
-
xs
-
4
text
-
center
" style="
border
-
right
:
1
px
solid
#f4f4f4">
<
div
id
=
"sparkline-1"
></
div
>
<
div
class
="
knob
-
label
">Visitors</div>
</div>
<!-- ./col -->
<div class="
col
-
xs
-
4
text
-
center
" style="
border
-
right
:
1
px
solid
#f4f4f4">
<
div
id
=
"sparkline-2"
></
div
>
<
div
class
="
knob
-
label
">Online</div>
</div>
<!-- ./col -->
<div class="
col
-
xs
-
4
text
-
center
">
<div id="
sparkline
-
3
"></div>
<div class="
knob
-
label
">Exists</div>
</div>
<!-- ./col -->
</div>
<!-- /.row -->
</div>
</div>
<!-- /.box -->
<!-- solid sales graph -->
<div class="
box
box
-
solid
bg
-
teal
-
gradient
">
<div class="
box
-
header
">
<i class="
fa
fa
-
th
"></i>
<h3 class="
box
-
title
">Sales Graph</h3>
<div class="
box
-
tools
pull
-
right
">
<button type="
button
" class="
btn
bg
-
teal
btn
-
sm
" data-widget="
collapse
"><i class="
fa
fa
-
minus
"></i>
</button>
<button type="
button
" class="
btn
bg
-
teal
btn
-
sm
" data-widget="
remove
"><i class="
fa
fa
-
times
"></i>
</button>
</div>
</div>
<div class="
box
-
body
border
-
radius
-
none
">
<div class="
chart
" id="
line
-
chart
" style="
height
:
250
px
;
"></div>
</div>
<!-- /.box-body -->
<div class="
box
-
footer
no
-
border
">
<div class="
row
">
<div class="
col
-
xs
-
4
text
-
center
" style="
border
-
right
:
1
px
solid
#f4f4f4">
<
input
type
=
"text"
class
="
knob
" data-readonly="
true
" value="
20
" data-width="
60
" data-height="
60
" data-fgColor="
#39CCCC">
<
div
class
="
knob
-
label
">Mail-Orders</div>
</div>
<!-- ./col -->
<div class="
col
-
xs
-
4
text
-
center
" style="
border
-
right
:
1
px
solid
#f4f4f4">
<
input
type
=
"text"
class
="
knob
" data-readonly="
true
" value="
50
" data-width="
60
" data-height="
60
" data-fgColor="
#39CCCC">
<
div
class
="
knob
-
label
">Online</div>
</div>
<!-- ./col -->
<div class="
col
-
xs
-
4
text
-
center
">
<input type="
text
" class="
knob
" data-readonly="
true
" value="
30
" data-width="
60
" data-height="
60
" data-fgColor="
#39CCCC">
<
div
class
="
knob
-
label
">In-Store</div>
</div>
<!-- ./col -->
</div>
<!-- /.row -->
</div>
<!-- /.box-footer -->
</div>
<!-- /.box -->
<!-- Calendar -->
<div class="
box
box
-
solid
bg
-
green
-
gradient
">
<div class="
box
-
header
">
<i class="
fa
fa
-
calendar
"></i>
<h3 class="
box
-
title
">Calendar</h3>
<!-- tools box -->
<div class="
pull
-
right
box
-
tools
">
<!-- button with a dropdown -->
<div class="
btn
-
group
">
<button type="
button
" class="
btn
btn
-
success
btn
-
sm
dropdown
-
toggle
" data-toggle="
dropdown
">
<i class="
fa
fa
-
bars
"></i></button>
<ul class="
dropdown
-
menu
pull
-
right
" role="
menu
">
<li><a href="
#">Add new event</a></li>
<
li
><
a
href
=
"#"
>
Clear
events
</
a
></
li
>
<
li
class
="
divider
"></li>
<li><a href="
#">View calendar</a></li>
</
ul
>
</
div
>
<
button
type
=
"button"
class
="
btn
btn
-
success
btn
-
sm
" data-widget="
collapse
"><i class="
fa
fa
-
minus
"></i>
</button>
<button type="
button
" class="
btn
btn
-
success
btn
-
sm
" data-widget="
remove
"><i class="
fa
fa
-
times
"></i>
</button>
</div>
<!-- /. tools -->
</div>
<!-- /.box-header -->
<div class="
box
-
body
no
-
padding
">
<!--The calendar -->
<div id="
calendar
" style="
width
:
100
%
"></div>
</div>
<!-- /.box-body -->
<div class="
box
-
footer
text
-
black
">
<div class="
row
">
<div class="
col
-
sm
-
6
">
<!-- Progress bars -->
<div class="
clearfix
">
<span class="
pull
-
left
">Task #1</span>
<small class="
pull
-
right
">90%</small>
</div>
<div class="
progress
xs
">
<div class="
progress
-
bar
progress
-
bar
-
green
" style="
width
:
90
%
;
"></div>
</div>
<div class="
clearfix
">
<span class="
pull
-
left
">Task #2</span>
<small class="
pull
-
right
">70%</small>
</div>
<div class="
progress
xs
">
<div class="
progress
-
bar
progress
-
bar
-
green
" style="
width
:
70
%
;
"></div>
</div>
</div>
<!-- /.col -->
<div class="
col
-
sm
-
6
">
<div class="
clearfix
">
<span class="
pull
-
left
">Task #3</span>
<small class="
pull
-
right
">60%</small>
</div>
<div class="
progress
xs
">
<div class="
progress
-
bar
progress
-
bar
-
green
" style="
width
:
60
%
;
"></div>
</div>
<div class="
clearfix
">
<span class="
pull
-
left
">Task #4</span>
<small class="
pull
-
right
">40%</small>
</div>
<div class="
progress
xs
">
<div class="
progress
-
bar
progress
-
bar
-
green
" style="
width
:
40
%
;
"></div>
</div>
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
</div>
<!-- /.box -->
</section>
<!-- right col -->
</div>
<!-- /.row (main row) -->
</section>
@endsection
@endsection
resources/views/vendor/adminlte/layouts/owner/listRoom.blade.php
View file @
1fdf0c33
...
@@ -66,7 +66,6 @@
...
@@ -66,7 +66,6 @@
</table>
</table>
</div>
</div>
</div>
</div>
</div>
@endsection
@endsection
resources/views/vendor/adminlte/layouts/partials/mainheader.blade.php
View file @
1fdf0c33
...
@@ -98,10 +98,7 @@
...
@@ -98,10 +98,7 @@
</li>
</li>
@endif
@endif
<!-- Control Sidebar Toggle Button -->
<li>
<a
href=
"#"
data-toggle=
"control-sidebar"
><i
class=
"fa fa-gears"
></i></a>
</li>
</ul>
</ul>
</div>
</div>
</nav>
</nav>
...
...
resources/views/vendor/adminlte/layouts/partials/sidebar.blade.php
View file @
1fdf0c33
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
<li
class=
"treeview"
><a
href=
"#"
><i
class=
'fa fa-inbox'
></i>
<span>
PESANAN
</span></a>
<li
class=
"treeview"
><a
href=
"#"
><i
class=
'fa fa-inbox'
></i>
<span>
PESANAN
</span></a>
<ul
class=
"treeview-menu"
style=
"display : none;"
>
<ul
class=
"treeview-menu"
style=
"display : none;"
>
<li><a
href=
"{{url('pesanan')}}"
><i
class=
'fa fa-list'
></i>
<span>
Daftar Pesanan
</span></a></li>
<li><a
href=
"{{url('pesanan')}}"
><i
class=
'fa fa-list'
></i>
<span>
Daftar Pesanan
</span></a></li>
<li><a
href=
"
#
"
><i
class=
'fa fa-plus'
></i>
<span>
Tambah Pesanan Manual
</span></a></li>
<li><a
href=
"
{{url('AddBook')}}
"
><i
class=
'fa fa-plus'
></i>
<span>
Tambah Pesanan Manual
</span></a></li>
</ul>
</ul>
</li>
</li>
...
...
routes/web.php
View file @
1fdf0c33
...
@@ -87,4 +87,3 @@ Route::put('listPengajuanHomestay/{id}','AdminController@AccPengajuanHomestay');
...
@@ -87,4 +87,3 @@ Route::put('listPengajuanHomestay/{id}','AdminController@AccPengajuanHomestay');
Route
::
resource
(
'profile'
,
'ProfileController'
);
Route
::
resource
(
'profile'
,
'ProfileController'
);
Route
::
get
(
'reqFasilitas'
,
'OwnerController@requestFasilitas'
);
Route
::
get
(
'reqFasilitas'
,
'OwnerController@requestFasilitas'
);
Route
::
post
(
'reqFasilitas'
,
'OwnerController@storeRequest'
);
Route
::
post
(
'reqFasilitas'
,
'OwnerController@storeRequest'
);
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