This commit is contained in:
rianbtk 2022-11-25 07:09:53 +07:00
parent 894bccf345
commit 9fa10716c2
5 changed files with 180208 additions and 0 deletions

View File

@ -9,6 +9,9 @@ class StudentController extends Controller
public function index() {
return view('student/main');
}
public function android() {
return view('student/main');
}
public function androidcourse() {
return view('student/androidcourse/main');
}

180192
database/aplas_web N.sql Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,5 @@
# Tuliskan variabel dibawah ini
def konversi(umur):
#Tuliskan kode program dibawah ini

View File

@ -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>
</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>
</section><!-- End Featured Services Section -->

View File

@ -232,6 +232,7 @@ Route::group(['middleware' => ['auth', 'student']], function () {
Route::get('/student/androidcourse/asynctask', 'StudentController@asynctask');
Route::get('/student/androidcourse/firebase', 'StudentController@firebase');
Route::get('/student/android', 'StudentController@android');
Route::get('/student', 'StudentController@index');
Route::resource('/student/tasks', 'TaskStdController');