KategoriBeritaController.php
4.58 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
<?php
namespace App\Http\Controllers\Backend;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
use Yajra\DataTables\Facades\DataTables;
use App\Models\KategoriBerita;
class KategoriBeritaController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view ('backend.kategoriberita.index');
}
public function data(Request $request)
{
if ($request->ajax()) {
$kategoriberita = KategoriBerita::all();
return Datatables::of($kategoriberita)
->addIndexColumn()
->addColumn(
'action',
'<center>
<a class="edit ubah" data-toggle="tooltip" data-placement="top" title="Edit" kategoriberita-id="{{ $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" kategoriberita-id="{{ $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.kategoriberita.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(), [
'nama_kategori' => 'required',
]);
if ($validator->fails()) {
$respon = array('status'=>false, 'pesan' => $validator->messages());
} else {
if (KategoriBerita::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)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
$kategoriberita = KategoriBerita::find($id);
return view ('backend.kategoriberita.ubah', compact('kategoriberita'));
}
/**
* 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_kategori' => 'required|string|max:255',
]);
if ($validator->fails()) {
$respon = array('status'=>false, 'pesan' => $validator->messages());
} else {
$kategoriberita = KategoriBerita::find($id);
$update = $kategoriberita->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)
{
$kategoriberita = KategoriBerita::find($id);
return view('backend.kategoriberita.hapus',compact('kategoriberita'));
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
$kategoriberita = kategoriberita::find($id);
if ($kategoriberita->delete()) {
$respon = array('status'=>true, 'pesan' => ['msg' => 'Data berhasil dihapus']);
} else {
$respon = array('status'=>false, 'pesan' => ['msg' => 'Data gagal dihapus']);
}
return response()->json($respon);
}
}