FormatAreaController.php
3.25 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
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use App\Models\format_area;
use App\Models\type_area;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
class FormatAreaController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$formatareas = format_area::query()->orderByDesc('created_at')->orderByDesc('id')->paginate(5);
return view('admin.formatarea.index', compact('formatareas'));
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('admin.formatarea.create');
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
$rules = [
'name_format' => 'required|min:3|max:255',
];
$messages = [
'required' => 'Укажите обязательное поле',
];
$validator = Validator::make($request->all(), $rules, $messages);
if ($validator->fails()) {
return redirect()->route('admin.formatarea.create')
->withErrors($validator);
} else {
$params = $request->all();
format_area::create($params);
return redirect()->route('admin.formatarea.index');
}
}
/**
* Display the specified resource.
*
* @param \App\Models\format_area $format_area
* @return \Illuminate\Http\Response
*/
public function show(format_area $format_area)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\format_area $formatarea
* @return \Illuminate\Http\Response
*/
public function edit(format_area $formatarea)
{
return view('admin.formatarea.edit', compact('formatarea'));
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Models\format_area $formatarea
* @return \Illuminate\Http\Response
*/
public function update(Request $request, format_area $formatarea)
{
$rules = [
'name_format' => 'required|min:3|max:255',
];
$messages = [
'required' => 'Укажите обязательное поле',
];
$validator = Validator::make($request->all(), $rules, $messages);
if ($validator->fails()) {
return redirect()->route('admin.formatarea.edit')
->withErrors($validator);
} else {
$params = $request->all();
$formatarea->update($params);
return redirect()->route('admin.formatarea.index');
}
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\format_area $formatarea
* @return \Illuminate\Http\Response
*/
public function destroy(format_area $formatarea)
{
$formatarea->delete();
return redirect()->route('admin.formatarea.index');
}
}