controller

Anonymous
php_laravel_blade
07/17/2021 1:44 PM
264 B
21
Indexable
    public function goprofile($id) {
$user = DB::table('users')->where('id',$id)->first(); 
         $fols = Follows::find($id);
    return view ('userprofile',compact('user','fols'));
    } 
Editor is loading...