App\Http\Controllers\VendorApiController::index PHP Method

index() public method

public index ( )
    public function index()
    {
        $vendors = Vendor::scope()->withTrashed()->orderBy('created_at', 'desc');
        return $this->listResponse($vendors);
    }