Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pa21617d4ti07
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
rizky
pa21617d4ti07
Commits
f12c62cf
Commit
f12c62cf
authored
7 years ago
by
rizky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
route web.php
parent
67823f2a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
index.blade.php
resources/views/index.blade.php
+2
-1
web.php
routes/web.php
+3
-5
No files found.
resources/views/index.blade.php
View file @
f12c62cf
...
...
@@ -358,7 +358,8 @@
<!-- Plugin JavaScript -->
<script
src=
"{{asset('https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js')}}"
></script>
<script
src=
"{{asset('vendor/scrollreveal/scrollreveal.min.js')}}"
></script>
<script
src=
"{{asset('vendor/magnific-popup/jquery.magnific-popup.min.js')}}"
></script>
<script
src=
"{{asset
('vendor/magnific-popup/jquery.magnific-popup.min.js')}}"
></script>
<!-- Theme JavaScript -->
<script
src=
"{{asset('js/creative.min.js')}}"
></script>
...
...
This diff is collapsed.
Click to expand it.
routes/web.php
View file @
f12c62cf
...
...
@@ -20,7 +20,7 @@ Route::post('/logout', 'LoginController@logout');
Route
::
group
([
'middleware'
=>
'manager'
],
function
()
{
Route
::
get
(
'/manager'
,
'ManagerController@index'
);
Route
::
get
(
'/'
,
'ManagerController@index'
);
//
Route::get('/', 'ManagerController@index');
Route
::
get
(
'/penjualan'
,
'ManagerController@penjualan'
);
Route
::
get
(
'/viewpengunjung'
,
'ManagerController@pengunjung'
);
Route
::
get
(
'/viewfeedback'
,
'ManagerController@viewFeedback'
);
...
...
@@ -29,7 +29,7 @@ Route::group(['middleware' => 'manager'], function()
Route
::
group
([
'middleware'
=>
'staff'
],
function
()
{
Route
::
get
(
'/staff'
,
'StaffController@index'
);
Route
::
get
(
'/'
,
'StaffController@index'
);
//
Route::get('/', 'StaffController@index');
// Route::resource('/ticket', 'TicketController');
Route
::
get
(
'/pemesanan'
,
'TicketController@datapesanan'
);
Route
::
get
(
'/lunas/{id}'
,
'TicketController@lunas'
);
...
...
@@ -42,7 +42,7 @@ Route::group(['middleware' => 'staff'], function ()
Route
::
group
([
'middleware'
=>
'customer'
],
function
()
{
Route
::
get
(
'/customer'
,
'CustomerController@index'
);
Route
::
get
(
'/'
,
'CustomerController@index'
);
//
Route::get('/', 'CustomerController@index');
Route
::
resource
(
'/ticket'
,
'TicketController'
);
Route
::
get
(
'/ticket/beli/{id}'
,
'TicketController@beli'
);
Route
::
post
(
'/ticket/beli'
,
'TicketController@storeorder'
);
...
...
@@ -54,5 +54,4 @@ Route::group(['middleware' => 'customer'], function ()
Route
::
get
(
'/data_konfirmasi'
,
'TicketController@datakonfirmasi'
);
Route
::
get
(
'/feedback'
,
'CustomerController@feedbackIndex'
);
Route
::
post
(
'/feedback/create'
,
'CustomerController@createFeedback'
);
});
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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