Blame view

app/Http/Controllers/Admin/EducationController.php 4.65 KB
00652ea57   Андрей Ларионов   Оптимизация запро...
1
2
3
4
5
6
  <?php
  
  namespace App\Http\Controllers\Admin;
  
  use App\Http\Controllers\Controller;
  use App\Http\Requests\EducationRequest;
96681864e   Андрей Ларионов   Справочник образо...
7
  use App\Http\Requests\ProgramEducationRequest;
00652ea57   Андрей Ларионов   Оптимизация запро...
8
  use App\Models\Education;
96681864e   Андрей Ларионов   Справочник образо...
9
  use App\Models\ProgramEducation;
00652ea57   Андрей Ларионов   Оптимизация запро...
10
  use Illuminate\Http\Request;
636d814c5   Андрей Ларионов   Редактор табов об...
11
  use Illuminate\Support\Facades\DB;
01e6816d2   Андрей Ларионов   Добавление модели...
12
  use Illuminate\Support\Facades\Storage;
00652ea57   Андрей Ларионов   Оптимизация запро...
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
  
  class EducationController extends Controller
  {
      /**
       * Display a listing of the resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function index()
      {
          $education = Education::query()->active()->paginate(15);
          return view('admin.education.index', compact('education'));
      }
  
      /**
       * Show the form for creating a new resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function create()
      {
          return view('admin.education.add');
      }
  
      /**
       * Store a newly created resource in storage.
       *
       * @param  \Illuminate\Http\Request  $request
       * @return \Illuminate\Http\Response
       */
      public function store(EducationRequest $request)
      {
01e6816d2   Андрей Ларионов   Добавление модели...
45
46
47
48
49
          $params = $request->all();
          if ($request->has('image')) {
              $params['image'] = $request->file('image')->store("education", 'public');
          }
          Education::create($params);
00652ea57   Андрей Ларионов   Оптимизация запро...
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
          return redirect()->route('admin.education.index');
      }
  
      /**
       * Display the specified resource.
       *
       * @param  \App\Models\Education  $education
       * @return \Illuminate\Http\Response
       */
      public function show(Education $education)
      {
          //
      }
  
      /**
       * Show the form for editing the specified resource.
       *
       * @param  \App\Models\Education  $education
       * @return \Illuminate\Http\Response
       */
      public function edit(Education $education)
      {
eb8596db6   Андрей Ларионов   Правки вакансии, ...
72
73
          $program = ProgramEducation::query()->where('education_id', '=', $education->id)
              ->orderBy('level')->get();
eb8596db6   Андрей Ларионов   Правки вакансии, ...
74
          return view('admin.education.edit', compact('education', 'program'));
00652ea57   Андрей Ларионов   Оптимизация запро...
75
76
77
78
79
80
81
82
83
84
85
      }
  
      /**
       * Update the specified resource in storage.
       *
       * @param  \Illuminate\Http\Request  $request
       * @param  \App\Models\Education  $education
       * @return \Illuminate\Http\Response
       */
      public function update(EducationRequest $request, Education $education)
      {
01e6816d2   Андрей Ларионов   Добавление модели...
86
87
88
89
90
91
92
93
94
          $params = $request->all();
          if ($request->has('image')) {
              if (!empty($education->image)) {
                  Storage::delete($education->image);
              }
              $params['image'] = $request->file('image')->store("education", 'public');
          }
  
          $education->update($params);
00652ea57   Андрей Ларионов   Оптимизация запро...
95
96
97
98
99
100
101
102
103
104
105
106
107
108
          return redirect()->route('admin.education.index');
      }
  
      /**
       * Remove the specified resource from storage.
       *
       * @param  \App\Models\Education  $education
       * @return \Illuminate\Http\Response
       */
      public function destroy(Education $education)
      {
          $education->update(['is_remove' => 1]);
          return redirect()->route('admin.education.index');
      }
96681864e   Андрей Ларионов   Справочник образо...
109

636d814c5   Андрей Ларионов   Редактор табов об...
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
      public function rename_program(Request $request) {
          if ($request->ajax()) {
              $oldnamelevel = $request->oldname;
              $newnamelevel = $request->newname;
              $id_education = $request->id_education;
  
              $result = DB::table('program_education')
                  ->where('education_id', '=', $id_education)
                  ->where('level', '=', $oldnamelevel)
                  ->update(['level' => $newnamelevel]);
  
              return $result;
          } else return "";
  
      }
eb8596db6   Андрей Ларионов   Правки вакансии, ...
125
126
127
      public function add_program(Request $request) {
          $id_education = $request->id;
          $level = $request->level;
96681864e   Андрей Ларионов   Справочник образо...
128
129
130
131
132
133
134
135
136
          return view('admin.education.program', compact('id_education', 'level'));
      }
  
      public function store_program(ProgramEducationRequest $request) {
          $education = $request->education_id;
          ProgramEducation::create($request->all());
  
          return redirect()->route('admin.education.edit', ['education' => $education]);
      }
22f5df84f   Андрей Ларионов   Образование табы
137
138
139
140
141
142
143
144
145
      public function edit_program(ProgramEducation $program, Education $education) {
          $id_education = $education->id;
          return view('admin.education.program-edit', compact('id_education',  'education', 'program'));
      }
  
      public function update_program(ProgramEducationRequest $request, ProgramEducation $program, Education $education) {
          $program->update($request->all());
          return redirect()->route('admin.education.edit', ['education' => $education]);
      }
46be695f5   Андрей Ларионов   Образование и спе...
146
147
148
149
150
151
      public function delete_program(ProgramEducation $program, Education $education) {
          $education = $education->id;
          $program->delete();
  
          return redirect()->route('admin.education.edit', ['education' => $education]);
      }
00652ea57   Андрей Ларионов   Оптимизация запро...
152
  }