样式表未在laravel 5中加载

I have two routes

'/test'

which return the memberProfile blade. It works fine. But the other one

'/memberProfile/{id}'

which sends the request to memberController from where it returns the memberProfile blade. But this time the blade could not load the master layouts stylesheets. Instead of searching the stylesheets in path

http://127.0.0.1:8000/css/

it search the css in a path like

http://127.0.0.1:8000/memberProfile/css/

. here is web.php

Route::get('/test', function () {
    return view('members.memberProfile');
});
Route::get('/memberProfile/{id}','memberController@memberProfile'); 

and memberController class

public function memberProfile(Request $request){
        $id = decrypt($request->id);
        $Member = Member::find($id);
        $Member->Research->all();
        $MemberProject = Member::find($id);
        $MemberProject->Project->all();
        $MemberPublication = Member::find($id);
        $MemberPublication->Publication->all();
        return view('members.memberProfile',['members' => $Member , 'memberProject' => $MemberProject , 'memberPublication' => $MemberPublication]);
    }

What is the problem

You've to add the base url when you add a css or javascript file in view files :

<link rel="stylesheet" type="text/css" href="<?php echo URL::asset('assets/css/style.css'); ?>">


<script src="<?php echo URL::asset('assets/js/angular.min.js'); ?>" type="text/javascript"></script>