Skip to content

Instantly share code, notes, and snippets.

View fbryo21's full-sized avatar
🎯
Focusing

Febry Aryo Riandhito fbryo21

🎯
Focusing
View GitHub Profile
@fbryo21
fbryo21 / pegawai.blade.php
Created March 14, 2020 01:43
laravel crud with table
<div class="container">
<div class="card mt-5">
<div class="card-header text-center">
CRUD Data Pegawai
</div>
<div class="card-body">
<a href="/test/admin/pegawai/tambah" class="btn btn-primary">Input Pegawai Baru</a>
<a href="" class="btn btn-danger">Hapus</a>
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for names.." class="form-control">
<br/>
@fbryo21
fbryo21 / ViewEmployee.vue
Created March 12, 2020 02:20
an employee management app
<template>
<div id="view-employee">
<ul class="collection with-header">
<li class="collection-header"><h4>{{name}}</h4></li>
<li class="collection-item">Employee ID#: {{employee_id}}</li>
<li class="collection-item">Department: {{dept}}</li>
<li class="collection-item">Position: {{position}}</li>
</ul>
<router-link to="/" class="btn grey">Back</router-link>
<button @click="deleteEmployee" class="btn red">Delete</button>