add fields

This commit is contained in:
radhika587
2022-02-21 18:34:04 +05:30
parent 0578122fc3
commit 439fc4e002
6 changed files with 57 additions and 16 deletions

View File

@ -136,7 +136,8 @@ Route::get('/admin/{vue?}', function () {
Route::get('{company:slug}/customer/{vue?}', function (Company $company) {
return view('app')->with([
'customer_logo' => get_customer_logo($company->id),
'current_theme' => get_customer_portal_theme($company->id)
'current_theme' => get_customer_portal_theme($company->id),
'customer_page_title' => get_customer_page_title($company->id)
]);
})->where('vue', '[\/\w\.-]*')->name('customer.login')->middleware(['install']);