Files
freeu-project/app/Http/Controllers/Frontend/RevenueBasedFinancingController.php
Ritikesh yadav c661166e1d first commit
2024-03-28 14:52:40 +05:30

21 lines
782 B
PHP

<?php
namespace App\Http\Controllers\Frontend;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Http\Controllers\Admin\ManageFreeUInvestments\FractionalRealEstateController as FractionalRealEstateFontendController;
class RevenueBasedFinancingController extends Controller
{
public function index(){
$learnMore = (new FractionalRealEstateFontendController)->revenueBasedFinancingQuestionAndAnswer()->getData();
$faqs = (new FractionalRealEstateFontendController)->revenueBasedFinancingQuestionAndAnswerFaqs()->getData();
return view('Frontend.Pages.revenue-based-financing.index',compact('learnMore','faqs'));
}
public function product(){
return view('Frontend.Pages.revenue-based-financing.product');
}
}