Page Redicrect when clicking full calender. where date as argument?

Page Redicrect when clicking full calender. where date as argument?

well, i am trying to work with fullcalender in a portal. where when user clicks on date it redirect to a new page which list the appointments from mysql database table. where date clicked by user should act as the parameter. well i'm integrating following calendar in Laravel MVC pattern. well its should be purely Jquery no Ajax or JSON should be used.
  1.  $(function() { // document ready

  2.   $('#calendar').fullCalendar({
  3.   dayClick: function(date, allDay, jsEvent, view) {

  4. window.location.assign("http://localhost:8000/administrator/appointment/{{$date}}");
  5.     // change the day's background color just for fun
  6.     $(this).css('background-color', '#5C5550');

  7.   }
  8. });

  9.   });      
laravel controller code,
  1.  public function appointment($id,request $date)
  2.     {
  3.         
  4.         if(Auth::user()->role=='Administrator' || Auth::user()->role=='Manager' )
  5.         {
  6.             $appoint = DB::table('offers')->where('date',$id)->get();


  7.             foreach($appoint as $app)
  8.             {
  9.                 $date = $app->date;
  10.             }
  11.             // $offers = DB::table('offers')->where('id',  $id)->orderby('date','desc')->get();
  12.             // $subcategories = DB::table('sub_categories')->get();
  13.           //  dd($offers);
  14.            


  15.             $brands=DB::table('offers')->get();
  16.             //return $subcategory;

  17.         // return response()->json(['offers' => $offers, 'categories' => $categories, 'brands'=>$brands]);
  18.         return view('apointment', ['appoint' => $appoint,'date' => $date]);
  19.         }
  20.         else
  21.         {

  22.             return redirect('/administrator/appointment');


  23.          }


  24.     }

  25. }