Skip to content
Snippets Groups Projects
Commit 1e05affd authored by Yoga Adrian's avatar Yoga Adrian
Browse files

push penjadwalan

parent 88dc34cb
No related merge requests found
Pipeline #2513 skipped
......@@ -12,7 +12,7 @@
*/
Route::get('/', function () {
return view('app_template');
return view('pages.loginPage');
});
Route::get('pendidikan-formal/new', function() {
......@@ -78,3 +78,4 @@ Route::resource('InstitusiController', 'InstitusiController');
Route::get('/penjadwalan', function () {
return view('penjadwalan');
});
......@@ -6,8 +6,8 @@ use Illuminate\Database\Eloquent\Model;
class informal extends Model
{
protected $table = 'informals';
protected $primaryKey = 'id';
protected $table = 'booking';
protected $primaryKey = 'id_booking';
public $timestamps = false; //tidak ada create_at dan update_at
protected $connection = 'mysql';
}
@extends('app_template')
@section('title')
Edit | Form Pendidikan Pegawai
Edit | Form pendidikan Pegawai
@stop
@section('page_title')
......
......@@ -20,7 +20,7 @@
<div class="panel panel-default">
<div class="panel-heading font-bold">Login</div>
<div class="panel-body">
<form class="bs-example form-horizontal" method = "POST" action = "{{URL::to('login')}}">
<form class="bs-example form-horizontal" method = "POST" action = "{{URL::to('')}}">
<div class="form-group">
<label class="col-lg-2 control-label">e-mail</label>
<div class="col-lg-8">
......
......@@ -207,7 +207,7 @@
<h4 class="modal-title">Input Jadwal</h4>
</div>
<div class="modal-body">
<form class="form-group">
<form class="form-group" method = "POST" action = "{{URL::to('')}}">
<label for="judul">Judul kegiatan</label>
<input type="text" class="form-control" id="judul">
<label for="nama">Nama penyelenggara</label>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment