Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Arcanedev\LaravelSeo\Models; |
||
69 | public static function createOne($oldUrl, $newUrl, $status = Response::HTTP_MOVED_PERMANENTLY) |
||
70 | { |
||
71 | $redirect = new self([ |
||
72 | 'old_url' => $oldUrl, |
||
73 | 'new_url' => $newUrl, |
||
74 | 'status' => $status, |
||
75 | ]); |
||
76 | |||
77 | $redirect->save(); |
||
78 | |||
79 | return $redirect; |
||
80 | } |
||
81 | } |
||
82 |