Fixed Trending and normalized Discover
This commit is contained in:
parent
7d2f6e8fd6
commit
78fe44070c
7 changed files with 33 additions and 20 deletions
13
app/Models/DiscoverTemplate.php
Normal file
13
app/Models/DiscoverTemplate.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
namespace App\Models;
|
||||
|
||||
use TikScraper\Models\Discover;
|
||||
|
||||
class DiscoverTemplate extends BaseTemplate {
|
||||
public Discover $data;
|
||||
|
||||
function __construct(Discover $data) {
|
||||
parent::__construct("Discover");
|
||||
$this->data = $data;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue