for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace WITR\Http\Controllers;
use WITR\Http\Requests;
use WITR\Http\Controllers\Controller;
use Illuminate\Http\Request;
use WITR\TimeSlot;
use WITR\Schedule\WeeklySchedule;
class ShowController extends Controller {
/**
* Display a listing of the resource.
*
* @return Response
*/
public function schedule()
{
$schedule = WeeklySchedule::mergeFromTimeSlots(TimeSlot::with('djForTimeslot', 'showForTimeslot')->get());
return view('schedule.schedule')->withSchedule($schedule);
}
* Show the form for creating a new resource.
public function create()
//
* Store a newly created resource in storage.
public function store()
* Display the specified resource.
* @param int $id
public function show($id)
$id
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
* Show the form for editing the specified resource.
public function edit($id)
* Update the specified resource in storage.
public function update($id)
* Remove the specified resource from storage.
public function destroy($id)
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.