bugs fixes

This commit is contained in:
meghamalore
2024-06-10 16:34:37 +05:30
parent 43fef7ae46
commit efd5649f86
11 changed files with 828 additions and 196 deletions

View File

@@ -24,6 +24,7 @@ use App\Models\UserKyc;
use App\Notifications\UserAdmin;
use Illuminate\Support\Facades\Validator;
use Session;
use App\Models\Admin\Testimonial;
class HomeController extends Controller
{
@@ -31,7 +32,8 @@ class HomeController extends Controller
{
// dd($this->getAllTopPickProducts());
return view('Frontend.Pages.index', [
'topPicks' => $this->getAllTopPickProducts()
'topPicks' => $this->getAllTopPickProducts(),
'testimonial' => Testimonial::where('is_active',true)->get(),
]);
}