fix changes

This commit is contained in:
Ritikesh yadav
2024-04-26 18:40:07 +05:30
parent c6101d6de8
commit e98dbee59a
16 changed files with 2904 additions and 3118 deletions

View File

@@ -114,7 +114,7 @@ class OverviewController extends Controller
public function interestedBuyers($id, $table)
{
$interestedBuyers = MarketplaceBuyerForm::where(['associated_id' => $id, 'table' => $table])->get();
$interestedBuyers = MarketplaceBuyerForm::where(['associated_id' => $id, 'table' => $table])->orderBy('updated_at','DESC')->get();
if ($table == 'marketplace_fre_sellers') {
$data = MarketplaceFractionalRealEstateSeller::with('seller')->where('id', $id)->firstOrFail();