21 lines
782 B
PHP
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');
|
||
|
|
}
|
||
|
|
}
|