Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function destroy(Admin $admin, Media $media) |
||
22 | { |
||
23 | $admin->media()->where($media->getKeyName(), $media->getKey())->first()->delete(); |
||
24 | |||
25 | return intend([ |
||
26 | 'url' => route('frontarea.account.settings'), |
||
27 | 'with' => [ |
||
28 | 'warning' => trans('cortex/foundation::messages.resource_deleted', [ |
||
29 | 'resource' => trans('cortex/foundation::common.media'), |
||
30 | 'identifier' => $media->getRouteKey(), |
||
31 | ]), |
||
32 | ], |
||
33 | ]); |
||
34 | } |
||
35 | } |
||
36 |