App\Http\Controllers\DocumentAPIController::index PHP 메소드

index() 공개 메소드

public index ( ) : Illuminate\Http\Response
리턴 Illuminate\Http\Response
    public function index()
    {
        $documents = Document::scope();
        return $this->listResponse($documents);
    }