Blame view

app/Http/Controllers/Admin/CategoryController.php 2.79 KB
c5118e5f3   Андрей Ларионов   Админка сайта - в...
1
2
3
4
5
  <?php
  
  namespace App\Http\Controllers\Admin;
  
  use App\Http\Controllers\Controller;
6eff6bf11   Андрей Ларионов   Админка сайта кат...
6
  use App\Http\Requests\CategoryRequest;
c5118e5f3   Андрей Ларионов   Админка сайта - в...
7
8
  use App\Models\Category;
  use Illuminate\Http\Request;
6eff6bf11   Андрей Ларионов   Админка сайта кат...
9
  use Illuminate\Support\Facades\Storage;
c5118e5f3   Андрей Ларионов   Админка сайта - в...
10
11
12
13
14
15
16
17
18
19
  
  class CategoryController extends Controller
  {
      /**
       * Display a listing of the resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function index()
      {
6eff6bf11   Андрей Ларионов   Админка сайта кат...
20
21
          $categories = Category::query()->orderBy('id')->paginate(5);
          return view('admin.category.index', compact('categories'));
c5118e5f3   Андрей Ларионов   Админка сайта - в...
22
23
24
25
26
27
28
29
30
      }
  
      /**
       * Show the form for creating a new resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function create()
      {
6eff6bf11   Андрей Ларионов   Админка сайта кат...
31
          return view('admin.category.create');
c5118e5f3   Андрей Ларионов   Админка сайта - в...
32
33
34
35
36
37
38
39
      }
  
      /**
       * Store a newly created resource in storage.
       *
       * @param  \Illuminate\Http\Request  $request
       * @return \Illuminate\Http\Response
       */
6eff6bf11   Андрей Ларионов   Админка сайта кат...
40
      public function store(CategoryRequest $request)
c5118e5f3   Андрей Ларионов   Админка сайта - в...
41
      {
6eff6bf11   Андрей Ларионов   Админка сайта кат...
42
43
44
45
46
47
48
49
          $params = $request->all();
  
          if ($request->has('image')) {
              $params['image'] = $request->file('image')->store('category', 'public');
          }
  
          Category::create($params);
          return redirect()->route('admin.category.index');
c5118e5f3   Андрей Ларионов   Админка сайта - в...
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
      }
  
      /**
       * Display the specified resource.
       *
       * @param  \App\Models\Category  $category
       * @return \Illuminate\Http\Response
       */
      public function show(Category $category)
      {
          //
      }
  
      /**
       * Show the form for editing the specified resource.
       *
       * @param  \App\Models\Category  $category
       * @return \Illuminate\Http\Response
       */
      public function edit(Category $category)
      {
6eff6bf11   Андрей Ларионов   Админка сайта кат...
71
          return view('admin.category.edit', compact('category'));
c5118e5f3   Андрей Ларионов   Админка сайта - в...
72
73
74
75
76
77
78
79
80
81
82
      }
  
      /**
       * Update the specified resource in storage.
       *
       * @param  \Illuminate\Http\Request  $request
       * @param  \App\Models\Category  $category
       * @return \Illuminate\Http\Response
       */
      public function update(Request $request, Category $category)
      {
6eff6bf11   Андрей Ларионов   Админка сайта кат...
83
84
85
86
87
88
89
90
91
92
93
          $params = $request->all();
  
          if ($request->has('image')) {
              Storage::delete($category->image);
              $params['image'] = $request->file('image')->store('category', 'public');
          } else {
              if (!empty($category->image)) $params['image'] = $category->image;
          }
  
          $category->update($params);
          return redirect()->route('admin.category.index');
c5118e5f3   Андрей Ларионов   Админка сайта - в...
94
95
96
97
98
99
100
101
102
103
      }
  
      /**
       * Remove the specified resource from storage.
       *
       * @param  \App\Models\Category  $category
       * @return \Illuminate\Http\Response
       */
      public function destroy(Category $category)
      {
6eff6bf11   Андрей Ларионов   Админка сайта кат...
104
105
106
107
108
          if (!empty($category->image)) {
              Storage::delete($category->image);
          }
          $category->delete();
          return redirect()->route('admin.category.index');
c5118e5f3   Андрей Ларионов   Админка сайта - в...
109
110
      }
  }