This commit is contained in:
toom1996
2025-06-25 17:57:13 +08:00
parent 7d38f8da1e
commit e55ca8267e
4 changed files with 14 additions and 0 deletions

View File

@ -99,6 +99,7 @@ class WebsiteController extends AbstractController
$query->app_description = $this->request->post('app_description');
$query->app_name = $this->request->post('app_name');
$query->app_domain = $this->request->post('app_domain');
$query->app_keywords = $this->request->post('app_keywords');
$query->save();

View File

@ -17,6 +17,7 @@ namespace App\Model;
* @property int $updated_by
* @property string $app_domain
* @property int $is_delete
* @property string $app_keywords
*/
class AppWebsiteConfig extends Model
{