Skip to content

Commit

Permalink
rebuild and fixed mixed content issue
Browse files Browse the repository at this point in the history
rebuild and fixed mixed content issue
  • Loading branch information
Sharifur committed Mar 30, 2024
2 parents 33616bf + 83e9609 commit 9bf47b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions app/Http/Controllers/User/UserDashboardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
class UserDashboardController extends Controller
{
public function index(){
return Inertia::render('User/UserDashboard',[

]);
return Inertia::render('User/UserDashboard');
}

public function update_payment_info(Request $request){
Expand Down
2 changes: 1 addition & 1 deletion resources/views/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="csrf-token" content="{{ csrf_token() }}">

<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<title inertia>{{ config('app.name', 'Laravel') }}</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">

Expand Down

0 comments on commit 9bf47b7

Please sign in to comment.