1 | <?php namespace Arcanesoft\Blog\Http\Requests\Admin; |
||
12 | abstract class FormRequest extends BaseFormRequest |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Other Methods |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * Check if the blog is translatable. |
||
21 | * |
||
22 | * @return bool |
||
23 | */ |
||
24 | protected function isTranslatable() |
||
28 | |||
29 | /** |
||
30 | * Get the supported locales (only keys). |
||
31 | * |
||
32 | * @return array |
||
33 | */ |
||
34 | protected function getSupportedLocales() |
||
38 | } |
||
39 |