Domain\Student\Http\StudentController::show PHP Method

show() public method

Get student by id :id.
public show ( integer $id ) : Illuminate\Database\Eloquent\Model
$id integer
return Illuminate\Database\Eloquent\Model
    public function show($id)
    {
        return $this->repo->get($id, $this->columns, $this->with);
    }