bugs fixes
This commit is contained in:
@@ -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(),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user