drexreal
Member
- Oct 29, 2020
- 84
- 31
- 18
- 31
How to fix, Decrypt? - Larvel Framework
decrypt('1')in /home/woinsite/public_html/core/app/Http/Controllers/SiteController.php (line 120)
decrypt('1')in /home/woinsite/public_html/core/app/Http/Controllers/SiteController.php (line 120)
- public function softwareDetails($slug, $id)
- {
- $pageTitle = "Software Details";
- $software = Software::where('status', 1)->whereHas('category', function ($q) {
- $q->where('status', 1);
- })->where('id', decrypt($id))->firstOrFail();
- $otherServices = Service::where('status', 1)->whereHas('category', function ($q) {
- $q->where('status', 1);
- })->where('user_id', $software->user_id)->with('user')->limit(4)->orderBy('id', 'DESC')->get();