diff --git a/app/Http/Controllers/BasyaPhrasesController.php b/app/Http/Controllers/BasyaPhrasesController.php new file mode 100644 index 0000000..bfe3108 --- /dev/null +++ b/app/Http/Controllers/BasyaPhrasesController.php @@ -0,0 +1,12 @@ +get(); + } +} diff --git a/app/Models/BasyaPhrase.php b/app/Models/BasyaPhrase.php new file mode 100644 index 0000000..e5f2be2 --- /dev/null +++ b/app/Models/BasyaPhrase.php @@ -0,0 +1,11 @@ + -
-

Юрий говорит:

-

{{ currentPhrase }}

-
-
- - Другая фраза - - - Инструкция - + +
+
+

Юрий говорит:

+

{{ currentPhrase }}

+
+
+ + Другая фраза + + + Инструкция + +
@@ -31,49 +34,48 @@ @@ -82,13 +84,7 @@ export default { .bg-gradient { background: rgb(238, 174, 202)!important; - background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%)!important;; - /* - background: linear-gradient(-45deg, #f103b0, #f0a068, #4fdbfeff); - background-size: 200% 200%; - animation: gradient 15s ease infinite; - height: 100vh; - */ + background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%)!important; } .main-sheet-bg { @@ -103,11 +99,5 @@ export default { .vertical-center { justify-content: center; - /* -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - - transform: translateY(-50%); - */ } - diff --git a/routes/api_v1.php b/routes/api_v1.php index c584d04..a55173a 100644 --- a/routes/api_v1.php +++ b/routes/api_v1.php @@ -18,3 +18,4 @@ Route::get('/', 'App\Http\Controllers\Api\V1\CaesarController@index')->name('cae Route::get('/links', 'App\Http\Controllers\LinksController@index')->name('links'); Route::get('/schedules', 'App\Http\Controllers\SchedulesController@index')->name('schedules'); Route::get('/dates', 'App\Http\Controllers\SchedulesController@mmDate')->name('dates'); +Route::get('/phrases', 'App\Http\Controllers\BasyaPhrasesController@index')->name('phrases');