|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace App\Http\Controllers\Back; |
|
4
|
|
|
|
|
5
|
|
|
use App\Models\Fragment; |
|
6
|
|
|
use Spatie\FragmentImporter\Exporter; |
|
7
|
|
|
use App\Http\Requests\Back\FragmentRequest; |
|
8
|
|
|
use Spatie\Blender\Model\Updaters\UpdateMedia; |
|
9
|
|
|
|
|
10
|
|
|
class FragmentsController |
|
11
|
|
|
{ |
|
12
|
|
|
use UpdateMedia; |
|
13
|
|
|
|
|
14
|
|
|
public function index() |
|
15
|
|
|
{ |
|
16
|
|
|
$fragments = Fragment::where('hidden', false)->get(); |
|
17
|
|
|
|
|
18
|
|
|
return view('back.fragments.index')->with(compact('fragments')); |
|
|
|
|
|
|
19
|
|
|
} |
|
20
|
|
|
|
|
21
|
|
|
public function hidden() |
|
22
|
|
|
{ |
|
23
|
|
|
$fragments = Fragment::where('hidden', true)->get(); |
|
24
|
|
|
|
|
25
|
|
|
return view('back.fragments.index')->with(compact('fragments')); |
|
|
|
|
|
|
26
|
|
|
} |
|
27
|
|
|
|
|
28
|
|
|
public function create() |
|
29
|
|
|
{ |
|
30
|
|
|
$fragment = new Fragment(); |
|
31
|
|
|
$fragment->save(); |
|
32
|
|
|
|
|
33
|
|
|
return redirect()->action('Back\FragmentsController@edit', [$fragment->id]); |
|
|
|
|
|
|
34
|
|
|
} |
|
35
|
|
|
|
|
36
|
|
|
public function edit($id) |
|
37
|
|
|
{ |
|
38
|
|
|
$fragment = Fragment::find($id); |
|
39
|
|
|
|
|
40
|
|
|
return view('back.fragments.edit')->with(compact('fragment')); |
|
|
|
|
|
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
public function update($id, FragmentRequest $request) |
|
44
|
|
|
{ |
|
45
|
|
|
$fragment = Fragment::find($id); |
|
46
|
|
|
|
|
47
|
|
|
foreach (locales() as $locale) { |
|
48
|
|
|
$requestAttribute = "translated_{$locale}_text"; |
|
49
|
|
|
|
|
50
|
|
|
$fragment->setTranslation($locale, $request->get($requestAttribute)); |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
$fragment->save(); |
|
54
|
|
|
$this->updateMedia($fragment, $request); |
|
55
|
|
|
app('cache')->flush(); |
|
56
|
|
|
|
|
57
|
|
|
$eventDescription = fragment('back.events.updated', ['model' => 'Fragment', 'name' => $fragment->name]); |
|
58
|
|
|
|
|
59
|
|
|
flash()->success(strip_tags($eventDescription)); |
|
60
|
|
|
|
|
61
|
|
|
return redirect()->action('Back\FragmentsController@index'); |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
public function download() |
|
65
|
|
|
{ |
|
66
|
|
|
Exporter::sendExportToBrowser(); |
|
67
|
|
|
} |
|
68
|
|
|
} |
|
69
|
|
|
|
It seems like the method you are trying to call exists only in some of the possible types.
Let’s take a look at an example:
Available Fixes
Add an additional type-check:
Only allow a single type to be passed if the variable comes from a parameter: