Izveidot aplikāciju, kura ik pēc noteikta intervāla (60 sekundes) veic ierakstu datubāzē izmantojot Laravel freimworka iebūvēto funkcionalitāti.
<?php
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <brian@nesbot.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
\Symfony\Component\Translation\PluralizationRules::set(function ($number) {
return $number === 1 ? 0 : 1;
}, 'my');
/*
* Authors:
* - Josh Soref
* - JD Isaacks
* - Nay Lin Aung
*/
return [
'year' => 'တစ်နှစ်|:count နှစ်',
'y' => ':count နှစ်',
'month' => 'တစ်လ|:count လ',
'm' => ':count လ',
'week' => ':count ပတ်',
'w' => ':count ပတ်',
'day' => 'တစ်ရက်|:count ရက်',
'd' => ':count ရက်',
'hour' => 'တစ်နာရီ|:count နာရီ',
'h' => ':count နာရီ',
'minute' => 'တစ်မိနစ်|:count မိနစ်',
'min' => ':count မိနစ်',
'second' => 'စက္ကန်.အနည်းငယ်|:count စက္ကန့်',
's' => ':count စက္ကန့်',
'ago' => 'လွန်ခဲ့သော :time က',
'from_now' => 'လာမည့် :time မှာ',
'after' => ':time ကြာပြီးနောက်',
'before' => ':time မတိုင်ခင်',
'diff_now' => 'အခုလေးတင်',
'diff_yesterday' => 'မနေ့က',
'diff_tomorrow' => 'မနက်ဖြန်',
'diff_before_yesterday' => 'တမြန်နေ့က',
'diff_after_tomorrow' => 'တဘက်ခါ',
'period_recurrences' => ':count ကြိမ်',
'formats' => [
'LT' => 'Oh:Om A',
'LTS' => 'Oh:Om:Os A',
'L' => 'OD/OM/OY',
'LL' => 'OD MMMM OY',
'LLL' => 'OD MMMM OY Oh:Om A',
'LLLL' => 'dddd OD MMMM OY Oh:Om A',
],
'calendar' => [
'sameDay' => '[ယနေ.] LT [မှာ]',
'nextDay' => '[မနက်ဖြန်] LT [မှာ]',
'nextWeek' => 'dddd LT [မှာ]',
'lastDay' => '[မနေ.က] LT [မှာ]',
'lastWeek' => '[ပြီးခဲ့သော] dddd LT [မှာ]',
'sameElse' => 'L',
],
'months' => ['ဇန်နဝါရီ', 'ဖေဖော်ဝါရီ', 'မတ်', 'ဧပြီ', 'မေ', 'ဇွန်', 'ဇူလိုင်', 'သြဂုတ်', 'စက်တင်ဘာ', 'အောက်တိုဘာ', 'နိုဝင်ဘာ', 'ဒီဇင်ဘာ'],
'months_short' => ['ဇန်', 'ဖေ', 'မတ်', 'ပြီ', 'မေ', 'ဇွန်', 'လိုင်', 'သြ', 'စက်', 'အောက်', 'နို', 'ဒီ'],
'weekdays' => ['တနင်္ဂနွေ', 'တနင်္လာ', 'အင်္ဂါ', 'ဗုဒ္ဓဟူး', 'ကြာသပတေး', 'သောကြာ', 'စနေ'],
'weekdays_short' => ['နွေ', 'လာ', 'ဂါ', 'ဟူး', 'ကြာ', 'သော', 'နေ'],
'weekdays_min' => ['နွေ', 'လာ', 'ဂါ', 'ဟူး', 'ကြာ', 'သော', 'နေ'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'alt_numbers' => ['၀၀', '၀၁', '၀၂', '၀၃', '၀၄', '၀၅', '၀၆', '၀၇', '၀၈', '၀၉', '၁၀', '၁၁', '၁၂', '၁၃', '၁၄', '၁၅', '၁၆', '၁၇', '၁၈', '၁၉', '၂၀', '၂၁', '၂၂', '၂၃', '၂၄', '၂၅', '၂၆', '၂၇', '၂၈', '၂၉', '၃၀', '၃၁', '၃၂', '၃၃', '၃၄', '၃၅', '၃၆', '၃၇', '၃၈', '၃၉', '၄၀', '၄၁', '၄၂', '၄၃', '၄၄', '၄၅', '၄၆', '၄၇', '၄၈', '၄၉', '၅၀', '၅၁', '၅၂', '၅၃', '၅၄', '၅၅', '၅၆', '၅၇', '၅၈', '၅၉', '၆၀', '၆၁', '၆၂', '၆၃', '၆၄', '၆၅', '၆၆', '၆၇', '၆၈', '၆၉', '၇၀', '၇၁', '၇၂', '၇၃', '၇၄', '၇၅', '၇၆', '၇၇', '၇၈', '၇၉', '၈၀', '၈၁', '၈၂', '၈၃', '၈၄', '၈၅', '၈၆', '၈၇', '၈၈', '၈၉', '၉၀', '၉၁', '၉၂', '၉၃', '၉၄', '၉၅', '၉၆', '၉၇', '၉၈', '၉၉'],
'meridiem' => ['နံနက်', 'ညနေ'],
];