Blame view

app/Http/Controllers/Admin/JobTitlesController.php 2.61 KB
5f2a2635a   Андрей Ларионов   Справочник Должно...
1
2
3
4
5
6
  <?php
  
  namespace App\Http\Controllers\Admin;
  
  use App\Http\Controllers\Controller;
  use App\Http\Requests\JobTitlesRequest;
8f150320c   Андрей Ларионов   Работа рефакторинг
7
  use App\Models\Category;
5f2a2635a   Андрей Ларионов   Справочник Должно...
8
  use App\Models\Job_title;
31fe4e458   Андрей Ларионов   Показ проекта зак...
9
  use App\Models\Positions;
5f2a2635a   Андрей Ларионов   Справочник Должно...
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
  use Illuminate\Http\Request;
  
  class JobTitlesController extends Controller
  {
      /**
       * Display a listing of the resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function index()
      {
          $Jobs = Job_title::query()->orderBy('name')->active()->paginate(15);
          return view('admin.job_titles.index', compact('Jobs'));
      }
  
      /**
       * Show the form for creating a new resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function create()
      {
          /*$items = Job_title::query()->
                       orderByDesc('sort')->
                       orderBy('name')->
                       active()->
                       get();*/
8f150320c   Андрей Ларионов   Работа рефакторинг
37
          $category = Category::query()->get();
5f2a2635a   Андрей Ларионов   Справочник Должно...
38

8f150320c   Андрей Ларионов   Работа рефакторинг
39
          return view('admin.job_titles.add', compact('category'));
5f2a2635a   Андрей Ларионов   Справочник Должно...
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
      }
  
      /**
       * Store a newly created resource in storage.
       *
       * @param  \Illuminate\Http\Request  $request
       * @return \Illuminate\Http\Response
       */
      public function store(JobTitlesRequest $request)
      {
          Job_title::create($request->all());
          return redirect()->route('admin.job-titles.index');
      }
  
      /**
       * Display the specified resource.
       *
       * @param  \App\Models\Job_title  $job_title
       * @return \Illuminate\Http\Response
       */
      public function show(Job_title $job_title)
      {
          //
      }
  
      /**
       * Show the form for editing the specified resource.
       *
       * @param  \App\Models\Job_title  $job_title
       * @return \Illuminate\Http\Response
       */
      public function edit(Job_title $job_title)
      {
8f150320c   Андрей Ларионов   Работа рефакторинг
73
74
          $category = Category::query()->get();
          return view('admin.job_titles.edit', compact('job_title', 'category'));
5f2a2635a   Андрей Ларионов   Справочник Должно...
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
      }
  
      /**
       * Update the specified resource in storage.
       *
       * @param  \Illuminate\Http\Request  $request
       * @param  \App\Models\Job_title  $job_title
       * @return \Illuminate\Http\Response
       */
      public function update(JobTitlesRequest $request, Job_title $job_title)
      {
          $job_title->update($request->all());
          return redirect()->route('admin.job-titles.index');
      }
  
      /**
       * Remove the specified resource from storage.
       *
       * @param  \App\Models\Job_title  $job_title
       * @return \Illuminate\Http\Response
       */
      public function destroy(Job_title $job_title)
      {
          $job_title->update(['is_remove' => 1]);
          return redirect()->route('admin.job-titles.index');
      }
  }