This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| implementation "com.github.bumptech.glide:glide:4.11.0" | |
| implementation 'jp.wasabeef:glide-transformations:4.0.0' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:app="http://schemas.android.com/apk/res-auto" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| tools:context=".BelajarScrollViewActivity"> | |
| <ImageView | |
| android:id="@+id/ivBackground" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require_once "../helper/connection.php"; | |
| require_once "../helper/PhpXlsxGenerator.php"; | |
| $fileName = "Laporan Berita Acara ".date('Y-m-d').".xlsx"; | |
| $excelData[] = array('No','Lokasi','Tanggal','Kelas','Guru','Mata Pelajaran', | |
| 'PC Terpakai','PC Tidak Terpakai','Keterangan'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Favicons --> | |
| <link href="{{ asset('assets/img/favicon.png')}}" rel="icon"> | |
| <link href="{{ asset('assets/img/apple-touch-icon.png')}}" rel="apple-touch-icon"> | |
| <!-- Google Fonts --> | |
| <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet"> | |
| <!-- Vendor CSS Files --> | |
| <link href="{{ asset('assets/vendor/animate.css/animate.min.css') }}" rel="stylesheet"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @extends('adminlte::page') | |
| @section('title', 'Tambah User') | |
| @section('content_header') | |
| <h1 class="m-0 text-dark">Tambah User</h1> | |
| @stop | |
| @section('content') | |
| <form action="{{route('users.store')}}" method="post"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @extends('adminlte::page') | |
| @section('title', 'List User') | |
| @section('content_header') | |
| <h1 class="m-0 text-dark">List User</h1> | |
| @stop | |
| @section('content') | |
| <div class="row"> | |
| <div class="col-12"> | |
| <div class="card"> | |
| <div class="card-body"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @push('js') | |
| <script> | |
| var Toast = Swal.mixin({ | |
| toast: true, | |
| position: 'top-end', | |
| showConfirmButton: false, | |
| timer: 3000 | |
| }); | |
| function toast_show(icon, message) { | |
| Toast.fire({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Route::get('/',function (){ | |
| return view('login'); | |
| }) |