Skip to content

Instantly share code, notes, and snippets.

@paulcervov
paulcervov / Category.php
Created January 15, 2021 16:02
Laravel code examples for AbeloHost
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Category extends Model
{
use SoftDeletes;
@paulcervov
paulcervov / getCurrentTimeString.php
Last active March 26, 2020 19:34
Example function to get the correct string of the current time (Cyrillic)
<?php
/**
* Get correct time string
* E.g.: "01 час 01 минута", "02 час 02 минуты", "02 часа 05 минут".
*
* @return string
*/
function getCurrentTimeString() {