refactor: rewrite form pages using form helper

- add installGateway to app config
- update route names and groups
- remove `author_name` and `author_email` from `episodes` table
- remove `author_name` and `author_email` from `podcasts` table
- remove `owner_id` + add `created_by` and `updated_by` fields in `podcasts` and `episodes` tables
- remove unnecessary comments in database fields
- remove confirm password inputs from auth forms for better ux
- rename `pub_date` field to `published_at` and add publication time field in episode form

closes #14, #28
This commit is contained in:
Yassine Doghri 2020-08-14 18:27:57 +00:00
commit a1a28de702
59 changed files with 1580 additions and 1158 deletions

View file

@ -290,4 +290,12 @@ class App extends BaseConfig
| Defines a base route for all authentication related pages
*/
public $authGateway = 'cp-auth';
/*
|--------------------------------------------------------------------------
| Install gateway
|--------------------------------------------------------------------------
| Defines a base route for instance installation
*/
public $installGateway = 'cp-install';
}