Skip to content

Commit 9a420a7

Browse files
authored
Merge pull request #4 from rizkyyangpalsu/master
Copy assets to base project
2 parents a8c2aa3 + 70b453e commit 9a420a7

File tree

16 files changed

+179
-25
lines changed

16 files changed

+179
-25
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ trim_trailing_whitespace = false
1313

1414
[*.yml]
1515
indent_size = 2
16+
17+
[*.blade.php]
18+
indent_size = 2

assets/img/stisla-fill.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/img/stisla-light.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/img/stisla-transparent.svg

Lines changed: 1 addition & 0 deletions
Loading

resources/js/bootstrap.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ window.jQuery = window.$ = require('jquery');
1515
window.moment = require('moment');
1616

1717
require('popper.js');
18-
require('assets/resources/js/bootstrap');
18+
require('bootstrap');
1919
require('jquery.nicescroll');
2020

21-
require('./stiesla/stisla');
22-
require('./stiesla/scripts');
23-
require('./stiesla/custom');
21+
require('./stisla/stisla');
22+
require('./stisla/scripts');
23+
require('./stisla/custom');
2424

2525
/**
2626
* Next we will register the CSRF Token as a common header with Axios so that
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
@extends('layouts.app')
2+
3+
@section('content')
4+
<section class="section">
5+
<div class="section-header">
6+
<h1>Package Management</h1>
7+
</div>
8+
<div class="section-body">
9+
<h2 class="section-title">List of Packages Question</h2>
10+
<p class="section-lead">This page is for managing packages including questions and answers.</p>
11+
<div class="card">
12+
<div class="card-body p-0">
13+
<div class="table-responsive">
14+
<table class="table table-striped table-md">
15+
<thead>
16+
<tr>
17+
<th>#</th>
18+
<th>Name</th>
19+
<th>Description</th>
20+
<th>Level</th>
21+
<th></th>
22+
</tr>
23+
</thead>
24+
<tbody>
25+
<tr>
26+
<td>1</td>
27+
<td>Lorem</td>
28+
<td>Lorem ipsum dolor sit amet, consectetur adipisicing.</td>
29+
<td>3</td>
30+
<td></td>
31+
</tr>
32+
</tbody>
33+
</table>
34+
</div>
35+
</div>
36+
</div>
37+
</div>
38+
</section>
39+
@endsection

resources/views/layouts/app.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
<div class="main-wrapper">
55
<div class="navbar-bg"></div>
66
<nav class="navbar navbar-expand-lg main-navbar">
7-
@include('partials.app.topnav')
7+
@include('partials.topnav')
88
</nav>
99
<div class="main-sidebar">
10-
@include('partials.app.sidebar')
10+
@include('partials.sidebar')
1111
</div>
1212

1313
<!-- Main Content -->
1414
<div class="main-content">
1515
@yield('content')
1616
</div>
1717
<footer class="main-footer">
18-
@include('partials.app.footer')
18+
@include('partials.footer')
1919
</footer>
2020
</div>
2121
@endsection

0 commit comments

Comments
 (0)