admin dashboard

This commit is contained in:
kshitige
2024-05-31 15:10:50 +05:30
parent c7641338b7
commit 4618bd2c6a
8 changed files with 33 additions and 16 deletions

View File

@@ -106,6 +106,7 @@ class ManageLeadController extends Controller
public function createLead(StoreLeadRequest $request)
{
// dd($request->all());
$leadCreated = $this->lead->store($request);
$user = \Auth::user($request->lead_owner);
$notify['message'] = "You have been assigned a new lead!";
@@ -210,4 +211,4 @@ class ManageLeadController extends Controller
$Project = LeadAttachment::where('id', $id)->delete();
return response()->json(['message' => 'Attachment deleted successfully'], 200);
}
}
}