Blame view

app/Http/Controllers/Admin/FormatAreaController.php 3.25 KB
3575d19ae   Андрей Ларионов   Админка новости и...
1
2
3
4
5
6
  <?php
  
  namespace App\Http\Controllers\Admin;
  
  use App\Http\Controllers\Controller;
  use App\Models\format_area;
d82a28f22   Андрей Ларионов   Админка форматы и...
7
  use App\Models\type_area;
3575d19ae   Андрей Ларионов   Админка новости и...
8
  use Illuminate\Http\Request;
d82a28f22   Андрей Ларионов   Админка форматы и...
9
  use Illuminate\Support\Facades\Validator;
3575d19ae   Андрей Ларионов   Админка новости и...
10
11
12
13
14
15
16
17
18
19
  
  class FormatAreaController extends Controller
  {
      /**
       * Display a listing of the resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function index()
      {
d82a28f22   Андрей Ларионов   Админка форматы и...
20
21
          $formatareas = format_area::query()->orderByDesc('created_at')->orderByDesc('id')->paginate(5);
          return view('admin.formatarea.index', compact('formatareas'));
3575d19ae   Андрей Ларионов   Админка новости и...
22
23
24
25
26
27
28
29
30
      }
  
      /**
       * Show the form for creating a new resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function create()
      {
d82a28f22   Андрей Ларионов   Админка форматы и...
31
          return view('admin.formatarea.create');
3575d19ae   Андрей Ларионов   Админка новости и...
32
33
34
35
36
37
38
39
40
41
      }
  
      /**
       * Store a newly created resource in storage.
       *
       * @param  \Illuminate\Http\Request  $request
       * @return \Illuminate\Http\Response
       */
      public function store(Request $request)
      {
d82a28f22   Андрей Ларионов   Админка форматы и...
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
          $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');
          }
3575d19ae   Андрей Ларионов   Админка новости и...
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
      }
  
      /**
       * 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.
       *
d82a28f22   Андрей Ларионов   Админка форматы и...
75
       * @param  \App\Models\format_area  $formatarea
3575d19ae   Андрей Ларионов   Админка новости и...
76
77
       * @return \Illuminate\Http\Response
       */
d82a28f22   Андрей Ларионов   Админка форматы и...
78
      public function edit(format_area $formatarea)
3575d19ae   Андрей Ларионов   Админка новости и...
79
      {
d82a28f22   Андрей Ларионов   Админка форматы и...
80
          return view('admin.formatarea.edit', compact('formatarea'));
3575d19ae   Андрей Ларионов   Админка новости и...
81
82
83
84
85
86
      }
  
      /**
       * Update the specified resource in storage.
       *
       * @param  \Illuminate\Http\Request  $request
d82a28f22   Андрей Ларионов   Админка форматы и...
87
       * @param  \App\Models\format_area  $formatarea
3575d19ae   Андрей Ларионов   Админка новости и...
88
89
       * @return \Illuminate\Http\Response
       */
d82a28f22   Андрей Ларионов   Админка форматы и...
90
      public function update(Request $request, format_area $formatarea)
3575d19ae   Андрей Ларионов   Админка новости и...
91
      {
d82a28f22   Андрей Ларионов   Админка форматы и...
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
          $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');
          }
3575d19ae   Андрей Ларионов   Админка новости и...
109
110
111
112
113
      }
  
      /**
       * Remove the specified resource from storage.
       *
d82a28f22   Андрей Ларионов   Админка форматы и...
114
       * @param  \App\Models\format_area  $formatarea
3575d19ae   Андрей Ларионов   Админка новости и...
115
116
       * @return \Illuminate\Http\Response
       */
d82a28f22   Андрей Ларионов   Админка форматы и...
117
      public function destroy(format_area $formatarea)
3575d19ae   Андрей Ларионов   Админка новости и...
118
      {
d82a28f22   Андрей Ларионов   Админка форматы и...
119
120
          $formatarea->delete();
          return redirect()->route('admin.formatarea.index');
3575d19ae   Андрей Ларионов   Админка новости и...
121
122
      }
  }