mKelurahanController.php
4.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
namespace App\Http\Controllers\Backend;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Validator;
use Yajra\DataTables\Facades\DataTables;
use App\Models\Kelurahan;
use App\Models\Kecamatan;
class mKelurahanController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
public function data(Request $request)
{
if ($request->ajax()) {
$query = new Kelurahan;
$query = $query->getData($request->id);
return Datatables::of($query)
->addIndexColumn()
->addColumn(
'action',
'<center>
<a class="edit ubah" data-toggle="tooltip" data-placement="top" title="Edit" kelurahan-id="{{ $id }}" href="#edit-{{ $id }}">
<i class="fa fa-pencil text-warning"></i>
</a>   
<a class="delete hidden-xs hidden-sm hapus" data-toggle="tooltip" data-placement="top" title="Delete" kelurahan-id="{{ $id }}" href="#hapus-{{ $id }}">
<i class="fa fa-trash text-danger"></i>
</a>
</center>'
)
->rawColumns(['action'])->make(true);
} else {
exit("Not an AJAX request -_-");
}
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('backend.kelurahan.tambah');
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
$validator = Validator::make($request->all(), [
'kecamatan_id' => 'required',
'nama' => 'required',
]);
if ($validator->fails()) {
$respon = array('status'=>false, 'pesan' => $validator->messages());
} else {
if (Kelurahan::create($request->all())) {
$respon = array('status'=>true, 'pesan' => ['msg' => 'Data berhasil disimpan']);
} else {
$respon = array('status'=>false, 'pesan' => ['msg' => 'Data gagal disimpan']);
}
}
return response()->json($respon);
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
$kota_id = Kecamatan::find($id);
return view('backend.kelurahan.index', ['id' => $id,'kota_id' => $kota_id->kota_id]);
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
$kecamatan = new Kelurahan;
$kecamatan = $kecamatan->getKecamatanID($id);
$kelurahan = Kelurahan::find($id);
return view('backend.kelurahan.ubah', compact('kelurahan', 'kecamatan'));
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
$validator = Validator::make($request->all(), [
'nama' => 'required|string|max:255',
'kecamatan_id' => 'required',
]);
if ($validator->fails()) {
$respon = array('status'=>false, 'pesan' => $validator->messages());
} else {
$query = Kelurahan::find($id);
$update = $query->update($request->all());
if ($update) {
$respon = array('status'=>true, 'pesan' => ['msg' => 'Data berhasil diubah']);
} else {
$respon = array('status'=>false, 'pesan' => ['msg' => 'Data gagal diubah']);
}
}
return response()->json($respon);
}
public function hapus($id)
{
$query = Kelurahan::find($id);
return view('backend.kelurahan.hapus', ['data' => $query]);
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
$query = Kelurahan::find($id);
if ($query->delete()) {
$respon = array('status'=>true, 'pesan' => ['msg' => 'Data berhasil dihapus']);
} else {
$respon = array('status'=>false, 'pesan' => ['msg' => 'Data gagal dihapus']);
}
return response()->json($respon);
}
}