Removed home.js
Added Discover
This commit is contained in:
parent
df052dab36
commit
8816f4a1a1
25 changed files with 213 additions and 145 deletions
11
app/Models/ErrorTemplate.php
Normal file
11
app/Models/ErrorTemplate.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
namespace App\Models;
|
||||
|
||||
class ErrorTemplate extends BaseTemplate {
|
||||
public object $error;
|
||||
|
||||
function __construct(object $error) {
|
||||
parent::__construct('Error');
|
||||
$this->error = $error;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue