N
This commit is contained in:
parent
894bccf345
commit
9fa10716c2
|
|
@ -9,6 +9,9 @@ class StudentController extends Controller
|
||||||
public function index() {
|
public function index() {
|
||||||
return view('student/main');
|
return view('student/main');
|
||||||
}
|
}
|
||||||
|
public function android() {
|
||||||
|
return view('student/main');
|
||||||
|
}
|
||||||
public function androidcourse() {
|
public function androidcourse() {
|
||||||
return view('student/androidcourse/main');
|
return view('student/androidcourse/main');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
180192
database/aplas_web N.sql
Normal file
180192
database/aplas_web N.sql
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Tuliskan variabel dibawah ini
|
||||||
|
|
||||||
|
|
||||||
|
def konversi(umur):
|
||||||
|
#Tuliskan kode program dibawah ini
|
||||||
|
|
@ -143,6 +143,13 @@
|
||||||
<p class="description">MySQL is a DBMS (Database Management System) using SQL (Structured Query Language) commands.So, MySQL is a free database server licensed under the GNU General Public License (GPL) so you can use it for personal or commercial purposes without having to pay for an existing license.</p>
|
<p class="description">MySQL is a DBMS (Database Management System) using SQL (Structured Query Language) commands.So, MySQL is a free database server licensed under the GNU General Public License (GPL) so you can use it for personal or commercial purposes without having to pay for an existing license.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div onclick="window.open('{{URL::to('/student/android/')}}','android-aplas');" class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5">
|
||||||
|
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
|
||||||
|
<div class="icon"><i class='bx bxl-medium-old'></i></div>
|
||||||
|
<h4 class="title"><a href="">APLAS</a></h4>
|
||||||
|
<p class="description">Aplas lama</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section><!-- End Featured Services Section -->
|
</section><!-- End Featured Services Section -->
|
||||||
|
|
|
||||||
|
|
@ -232,6 +232,7 @@ Route::group(['middleware' => ['auth', 'student']], function () {
|
||||||
|
|
||||||
Route::get('/student/androidcourse/asynctask', 'StudentController@asynctask');
|
Route::get('/student/androidcourse/asynctask', 'StudentController@asynctask');
|
||||||
Route::get('/student/androidcourse/firebase', 'StudentController@firebase');
|
Route::get('/student/androidcourse/firebase', 'StudentController@firebase');
|
||||||
|
Route::get('/student/android', 'StudentController@android');
|
||||||
|
|
||||||
Route::get('/student', 'StudentController@index');
|
Route::get('/student', 'StudentController@index');
|
||||||
Route::resource('/student/tasks', 'TaskStdController');
|
Route::resource('/student/tasks', 'TaskStdController');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user