restore composer.json, add mysqli extension
This commit is contained in:
104
app/Models/Post.php
Executable file
104
app/Models/Post.php
Executable file
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Helpers\Month;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\Date;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
/**
|
||||
* @package App\Models
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property string $slug
|
||||
* @property string $langauge
|
||||
* @property string $content
|
||||
* @property int $position
|
||||
* @property int $topped
|
||||
* @property string $image
|
||||
* @property string $type // news, article, sales, media
|
||||
* @property string $keywords
|
||||
* @property string $descriptions
|
||||
* @property int $views
|
||||
*/
|
||||
class Post extends Model
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $guarded = ['id'];
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $casts = [
|
||||
'topped' => 'boolean',
|
||||
//'created_at' => 'datetime:j M Y',
|
||||
'keywords' => 'string',
|
||||
'descriptions' => 'string'
|
||||
];
|
||||
|
||||
/**
|
||||
* @param $value
|
||||
*/
|
||||
public function setNameAttribute($value)
|
||||
{
|
||||
$this->attributes['name'] = $value;
|
||||
$this->attributes['slug'] = Str::slug($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getImage(): string
|
||||
{
|
||||
if (!empty($this->image)) {
|
||||
if (in_array(env('FILESYSTEM_DISK'), ['s3', 'minio'])) {
|
||||
return Storage::temporaryUrl(
|
||||
$this->image, Date::now()->addMinutes(5)
|
||||
);
|
||||
}
|
||||
|
||||
return $this->image;
|
||||
}
|
||||
|
||||
return '/images/nophoto.jpg';
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getDescription()
|
||||
{
|
||||
if (!empty($this->descriptions)) {
|
||||
return $this->descriptions;
|
||||
}
|
||||
|
||||
return Str::limit(strip_tags($this->content), 250);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getKeywords()
|
||||
{
|
||||
if (!empty($this->keywords)) {
|
||||
return $this->keywords;
|
||||
}
|
||||
|
||||
$title = str_replace(' ', ', ', $this->name);
|
||||
$description = str_replace(' ', ', ', Str::limit(strip_tags($this->content), 250));
|
||||
|
||||
return "{$title}, {$description}";
|
||||
}
|
||||
|
||||
public function getDatePublic()
|
||||
{
|
||||
return Carbon::parse($this->created_at)->format('d') . ' '
|
||||
. Month::LayoutMonth(app()->getLocale(), Carbon::parse($this->created_at)->format('m')) . ' '
|
||||
. Carbon::parse($this->created_at)->format('Y');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user