RS
Size: a a a
RS
С
С
С
T
С
DT
if ($this->slug === null && !empty($this->content)) {
$this->merge(['slug' => Str::slug($this->title)]);
}
DT
С
DT
DT
С
DT
AK
DT
С
С
DT
public function testCat1()
{
create_news_article('My very own titile', 'Cat1');
$article = fetch_article_by_title('My very own title');
assert(has_file($article));
assert(has_slug($article) === false);
}
P