-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBacaanSholatController.php
50 lines (41 loc) · 1.26 KB
/
BacaanSholatController.php
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
<?php
namespace App\Http\Controllers\API;
use App\Http\Controllers\Controller;
use App\Models\BacaanSholat;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
class BacaanSholatController extends Controller
{
public function createBacaan(Request $request){
$validator = Validator::make($request->all(), [
'arab' => 'required',
'latin' => 'required',
'terjemahan' => 'required',
'voice_arab' => 'required',
'voice_terjemahan' => 'required',
]);
if($validator->fails()){
response()->json([
'Error' => true,
'Massage' => $validator->errors()
]);
}
$bacaan = BacaanSholat::create([
'arab' => $request->arab,
'latin' => $request->latin,
'terjemahan' => $request->terjemahan,
'voice_arab' => $request->voice_arab,
'voice_terjemahan' => $request->voice_terjemahan,
]);
response()->json([
'Error' => true,
'Massage' => $bacaan
]);
}
public function showBacaan(){
$bacaan = BacaanSholat::all();
return response()->json([
'Massage' => $bacaan
]);
}
}